1
0
Fork 0
mirror of https://github.com/Luzifer/share.git synced 2024-10-18 13:24:23 +00:00
share/Makefile

19 lines
265 B
Makefile
Raw Permalink Normal View History

default:
lint:
docker run --rm -ti \
-v "$(CURDIR):/src" \
-w "/src/src" \
node:12-alpine \
npx eslint --ext .js --fix frontend/app.js
.PHONY: frontend
frontend: node_modules
node ci/build.mjs
node_modules:
npm ci
publish: frontend
bash ci/build.sh