1
0
Fork 0
mirror of https://github.com/Luzifer/share.git synced 2024-10-18 05:14:23 +00:00
share/Makefile
Knut Ahlers 549f0d1f36
Port frontend to Vue 3 / Bootstrap 5.3
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2024-03-18 20:22:31 +01:00

18 lines
265 B
Makefile

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