1234567891011121314151617181920212223242526 |
- all: dev-setup build-js-production
- dev-setup: clean clean-dev npm-init
- npm-init:
- npm install
- npm-update:
- npm update
- build-js:
- npm run dev
- build-js-production:
- npm run build
- watch-js:
- npm run watch
- clean:
- rm -f js/accessibility.js
- rm -f js/accessibility.js.map
- clean-dev:
- rm -rf node_modules
|