server/settings/Makefile
John Molakvoæ (skjnldsv) a2d96128be
Makefile
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2018-05-16 09:50:21 +02:00

21 lines
256 B
Makefile

all: clean npm-update build-js-production
dev-setup: clean npm-update build-js
npm-update:
rm -rf node_modules
npm update
build-js:
npm run dev
build-js-production:
npm run build
watch-js:
npm run watch
clean:
rm js/main.js
rm js/main.js.map