mirror of
https://github.com/Luzifer/stadt-land-fluss.git
synced 2024-11-09 19:50:03 +00:00
17 lines
264 B
Makefile
17 lines
264 B
Makefile
|
default: frontend_lint
|
||
|
|
||
|
frontend_prod: export NODE_ENV=production
|
||
|
frontend_prod: frontend
|
||
|
|
||
|
frontend: node_modules
|
||
|
node ci/build.mjs
|
||
|
|
||
|
frontend_lint: node_modules
|
||
|
./node_modules/.bin/eslint \
|
||
|
--ext .ts,.vue \
|
||
|
--fix \
|
||
|
src
|
||
|
|
||
|
node_modules:
|
||
|
npm ci --include dev
|