Bump build and config

Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
pull/9930/head
John Molakvoæ (skjnldsv) 7 years ago
parent 2791bedfa9
commit 48016f00a4
No known key found for this signature in database
GPG Key ID: 60C25B8C072916CF
  1. 8
      .gitignore
  2. 2
      apps/oauth2/Makefile
  3. 2
      apps/oauth2/js/oauth2.js
  4. 1
      apps/oauth2/js/oauth2.js.map
  5. 2
      apps/oauth2/package-lock.json
  6. 8
      apps/oauth2/package.json
  7. 4
      apps/oauth2/webpack.common.js
  8. 0
      apps/oauth2/webpack.dev.js
  9. 0
      apps/oauth2/webpack.prod.js

8
.gitignore vendored

@ -31,11 +31,6 @@
!/apps/testing
!/apps/admin_audit
!/apps/updatenotification
/apps/updatenotification/build
#/apps/updatenotification/js/merged.js
#/apps/updatenotification/js/merged.js.map
/apps/updatenotification/js/*.hot-update.*
/apps/updatenotification/node_modules
!/apps/theming
!/apps/twofactor_backupcodes
!/apps/workflowengine
@ -46,6 +41,9 @@
/apps/files_external/3rdparty/irodsphp/prods/test*
/apps/files_external/tests/config.*.php
# apps modules
/apps/*/node_modules
# ignore themes except the example and the README
/themes/*

@ -19,7 +19,7 @@ watch-js:
clean:
rm -f js/oauth2.js
rm -f js/oauth2.map
rm -f js/oauth2.js.map
clean-dev:
rm -rf node_modules

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1,6 +1,6 @@
{
"name": "oauth2",
"version": "1.0.0",
"version": "1.1.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

@ -1,6 +1,6 @@
{
"name": "oauth2",
"version": "1.0.0",
"version": "1.1.0",
"description": "OAuth2 setup",
"author": "Roeland Jago Douma <roeland@famdouma.nl>",
"license": "AGPL-3.0-or-later",
@ -10,9 +10,9 @@
"test": "tests"
},
"scripts": {
"dev": "webpack --config src/webpack.dev.js",
"watch": "webpack --progress --watch --config src/webpack.dev.js",
"build": "webpack --progress --hide-modules --config src/webpack.prod.js",
"dev": "webpack --config webpack.dev.js",
"watch": "webpack --progress --watch --config webpack.dev.js",
"build": "webpack --progress --hide-modules --config webpack.prod.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {

@ -2,9 +2,9 @@ const path = require('path')
const { VueLoaderPlugin } = require('vue-loader');
module.exports = {
entry: path.join(__dirname, 'main.js'),
entry: path.join(__dirname, 'src', 'main.js'),
output: {
path: path.resolve(__dirname, '../js'),
path: path.resolve(__dirname, './js'),
publicPath: '/js',
filename: 'oauth2.js'
},
Loading…
Cancel
Save