Makefile 308 B

1234567891011121314151617181920212223242526
  1. all: dev-setup build-js-production
  2. dev-setup: clean clean-dev npm-init
  3. npm-init:
  4. npm install
  5. npm-update:
  6. npm update
  7. build-js:
  8. npm run dev
  9. build-js-production:
  10. npm run build
  11. watch-js:
  12. npm run watch
  13. clean:
  14. rm -f js/accessibility.js
  15. rm -f js/accessibility.js.map
  16. clean-dev:
  17. rm -rf node_modules