mirror of
https://github.com/Luzifer/cc-esbuild-vue.git
synced 2024-11-08 10:30:04 +00:00
13 lines
168 B
Makefile
13 lines
168 B
Makefile
default: lint build
|
|
|
|
build: node_modules
|
|
node ci/build.mjs
|
|
|
|
lint: node_modules
|
|
./node_modules/.bin/eslint \
|
|
--ext .js,.vue \
|
|
--fix \
|
|
src
|
|
|
|
node_modules:
|
|
npm ci
|