nextcloud/settings/Makefile
John Molakvoæ (skjnldsv) f4cec587d9
Bump makefile, readme, fix typo and cleanup
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2018-05-16 09:50:22 +02:00

27 lines
290 B
Makefile

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