You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
256 B

  1. all: clean npm-update build-js-production
  2. dev-setup: clean npm-update build-js
  3. npm-update:
  4. rm -rf node_modules
  5. npm update
  6. build-js:
  7. npm run dev
  8. build-js-production:
  9. npm run build
  10. watch-js:
  11. npm run watch
  12. clean:
  13. rm js/main.js
  14. rm js/main.js.map