summaryrefslogtreecommitdiffstats
path: root/apps/twofactor_backupcodes/Makefile
blob: 0fc12a8c802cb6e59b4596e9e1dbcbd0e82abf12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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/settings.js
	rm -f js/settings.js.map

clean-dev:
	rm -rf node_modules