diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2018-06-08 09:52:27 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-06-19 11:42:41 +0200 |
commit | d2d1e8e3750eb1c5f8049aa5d0e7326f8b49a659 (patch) | |
tree | d47b15245bfe9b238ca02ac97bd2a5e794f8af6c /apps/oauth2/Makefile | |
parent | 7b8063a2424ea9f9d87493a23074b62afdd57854 (diff) | |
download | nextcloud-server-d2d1e8e3750eb1c5f8049aa5d0e7326f8b49a659.tar.gz nextcloud-server-d2d1e8e3750eb1c5f8049aa5d0e7326f8b49a659.zip |
Migrate OAuth Admin settings to vue
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/oauth2/Makefile')
-rw-r--r-- | apps/oauth2/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/apps/oauth2/Makefile b/apps/oauth2/Makefile new file mode 100644 index 00000000000..f2bc6292bed --- /dev/null +++ b/apps/oauth2/Makefile @@ -0,0 +1,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.map + +clean-dev: + rm -rf node_modules |