Makefile
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
parent
2ae82137cd
commit
a2d96128be
|
@ -0,0 +1,21 @@
|
|||
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
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue