diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-06-19 14:50:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-19 14:50:03 +0200 |
commit | c3aea9cdf6d88895b1a1fc54ead9a2f0aa792cd3 (patch) | |
tree | 0293cac7af3ce4b54d9d66444896238f3113bd2c /apps/oauth2/Makefile | |
parent | 8646f01320f685de1a428b6e696c7ea691defffc (diff) | |
parent | f520a6bceb1b7e04059e4d16478c509f8c740581 (diff) | |
download | nextcloud-server-c3aea9cdf6d88895b1a1fc54ead9a2f0aa792cd3.tar.gz nextcloud-server-c3aea9cdf6d88895b1a1fc54ead9a2f0aa792cd3.zip |
Merge pull request #9830 from nextcloud/feature/noid/oauth_vue_redirect_validate
Migrate OAuth Admin settings to vue
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 |