12345678910111213141516171819202122232425262728293031323334 |
- all: clean dev-setup build-js-production
- # Dev env management
- dev-setup: clean npm-init
- npm-init:
- npm ci
- npm-update:
- npm update
- # Building
- build-js:
- npm run dev
- build-js-production:
- npm run build
- watch-js:
- npm run watch
- # Linting
- lint-fix:
- npm run lint:fix
- lint-fix-watch:
- npm run lint:fix-watch
- # Cleaning
- clean:
- rm -rf dist
- clean-git: clean
- git checkout -- dist
|