Move oauth2 to global webpack config
Signed-off-by:
Roeland Jago Douma <roeland@famdouma.nl>
Showing
- apps/oauth2/Makefile 0 additions, 25 deletionsapps/oauth2/Makefile
- apps/oauth2/js/oauth2.js 0 additions, 0 deletionsapps/oauth2/js/oauth2.js
- apps/oauth2/js/oauth2.js.map 0 additions, 0 deletionsapps/oauth2/js/oauth2.js.map
- apps/oauth2/package-lock.json 0 additions, 4672 deletionsapps/oauth2/package-lock.json
- apps/oauth2/package.json 0 additions, 31 deletionsapps/oauth2/package.json
- apps/oauth2/webpack.dev.js 0 additions, 12 deletionsapps/oauth2/webpack.dev.js
- apps/oauth2/webpack.js 3 additions, 0 deletionsapps/oauth2/webpack.js
- apps/oauth2/webpack.prod.js 0 additions, 7 deletionsapps/oauth2/webpack.prod.js
- package-lock.json 236 additions, 2 deletionspackage-lock.json
- package.json 8 additions, 2 deletionspackage.json
- webpack.common.js 2 additions, 1 deletionwebpack.common.js
apps/oauth2/Makefile
deleted
100644 → 0
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
apps/oauth2/package-lock.json
deleted
100644 → 0
This diff is collapsed.
apps/oauth2/package.json
deleted
100644 → 0
apps/oauth2/webpack.dev.js
deleted
100644 → 0
apps/oauth2/webpack.prod.js
deleted
100644 → 0
This diff is collapsed.
... | @@ -9,7 +9,8 @@ | ... | @@ -9,7 +9,8 @@ |
}, | }, | ||
"scripts": { | "scripts": { | ||
"build": "webpack --progress --hide-modules --config webpack.prod.js", | "build": "webpack --progress --hide-modules --config webpack.prod.js", | ||
"dev": "webpack --progress --watch --config webpack.dev.js" | "dev": "webpack --progress --watch --config webpack.dev.js", | ||
"watch": "webpack --progress --watch --config webpack.dev.js" | |||
}, | }, | ||
"repository": { | "repository": { | ||
"type": "git", | "type": "git", | ||
... | @@ -38,9 +39,11 @@ | ... | @@ -38,9 +39,11 @@ |
"jstimezonedetect": "^1.0.6", | "jstimezonedetect": "^1.0.6", | ||
"marked": "^0.6.0", | "marked": "^0.6.0", | ||
"moment": "^2.24.0", | "moment": "^2.24.0", | ||
"nextcloud-axios": "^0.1.3", | |||
"snap.js": "^2.0.9", | "snap.js": "^2.0.9", | ||
"strengthify": "git+https://github.com/MorrisJobke/strengthify.git", | "strengthify": "git+https://github.com/MorrisJobke/strengthify.git", | ||
"underscore": "^1.9.1" | "underscore": "^1.9.1", | ||
"vue": "^2.6.5" | |||
}, | }, | ||
"devDependencies": { | "devDependencies": { | ||
"@babel/core": "^7.2.2", | "@babel/core": "^7.2.2", | ||
... | @@ -49,11 +52,14 @@ | ... | @@ -49,11 +52,14 @@ |
"babel-loader": "^8.0.5", | "babel-loader": "^8.0.5", | ||
"css-loader": "^2.1.0", | "css-loader": "^2.1.0", | ||
"exports-loader": "^0.7.0", | "exports-loader": "^0.7.0", | ||
"file-loader": "^3.0.1", | |||
"handlebars-loader": "^1.7.1", | "handlebars-loader": "^1.7.1", | ||
"node-sass": "^4.11.0", | "node-sass": "^4.11.0", | ||
"sass-loader": "^7.1.0", | "sass-loader": "^7.1.0", | ||
"style-loader": "^0.23.1", | "style-loader": "^0.23.1", | ||
"url-loader": "^1.1.2", | "url-loader": "^1.1.2", | ||
"vue-loader": "^15.6.2", | |||
"vue-template-compiler": "^2.6.5", | |||
"webpack": "^4.29.3", | "webpack": "^4.29.3", | ||
"webpack-cli": "^3.2.3", | "webpack-cli": "^3.2.3", | ||
"webpack-merge": "^4.2.1" | "webpack-merge": "^4.2.1" | ||
... | ... |
Please register or sign in to comment