Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile « oauth2 « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 12714c620034941319ad4ec9a0ff09b64912587e (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/oauth2.js
	rm -f js/oauth2.js.map

clean-dev:
	rm -rf node_modules