aboutsummaryrefslogtreecommitdiffstats
path: root/settings/Makefile
blob: 5fa7fa5650beb126a40cf8e6d940651a998a05bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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