Makefile 236 B

12345678910111213141516171819202122
  1. all: dev-setup build-js-production
  2. dev-setup: 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-dev:
  14. rm -rf node_modules