Merge pull request #1388 from nextcloud/deps/bump
Bump stable dependencies
This commit is contained in:
2191
js/package-lock.json
generated
2191
js/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -9,10 +9,10 @@
|
||||
"dependencies": {
|
||||
"@uirouter/angularjs": "^1.0.23",
|
||||
"angular": "^1.7.9",
|
||||
"angular-animate": "^1.7.8",
|
||||
"angular-animate": "^1.7.9",
|
||||
"angular-file-upload": "^2.5.0",
|
||||
"angular-markdown-it": "^0.6.1",
|
||||
"angular-sanitize": "^1.7.8",
|
||||
"angular-sanitize": "^1.7.9",
|
||||
"babel-polyfill": "^6.26.0",
|
||||
"markdown-it": "^10.0.0",
|
||||
"markdown-it-link-target": "^1.0.2",
|
||||
@@ -22,25 +22,24 @@
|
||||
"ng-infinite-scroll": "^1.3.0",
|
||||
"ng-sortable": "^1.3.8",
|
||||
"ui-select": "^0.19.8",
|
||||
"vue": "^2.6.10",
|
||||
"vue": "^2.6.11",
|
||||
"vuex": "^3.1.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.6.4",
|
||||
"@babel/core": "^7.7.5",
|
||||
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
|
||||
"@babel/polyfill": "^7.7.0",
|
||||
"@babel/preset-env": "^7.6.3",
|
||||
"@babel/preset-env": "^7.7.6",
|
||||
"babel-loader": "^8.0.6",
|
||||
"css-loader": "^3.2.0",
|
||||
"css-loader": "^3.3.2",
|
||||
"karma": "^4.4.1",
|
||||
"mini-css-extract-plugin": "^0.8.0",
|
||||
"style-loader": "^1.0.0",
|
||||
"uglifyjs-webpack-plugin": "^2.2.0",
|
||||
"style-loader": "^1.0.1",
|
||||
"url-loader": "^3.0.0",
|
||||
"vue-loader": "^15.7.2",
|
||||
"vue-loader": "^15.8.3",
|
||||
"vue-style-loader": "^4.1.2",
|
||||
"vue-template-compiler": "^2.6.10",
|
||||
"webpack": "^4.41.2",
|
||||
"vue-template-compiler": "^2.6.11",
|
||||
"webpack": "^4.41.3",
|
||||
"webpack-cli": "^3.3.10",
|
||||
"webpack-merge": "^4.2.2"
|
||||
},
|
||||
|
||||
@@ -1,15 +1,18 @@
|
||||
const webpack = require('webpack');
|
||||
const merge = require('webpack-merge');
|
||||
const baseConfig = require('./webpack.config.js');
|
||||
const UglifyJsPlugin = require('uglifyjs-webpack-plugin')
|
||||
const TerserPlugin = require('terser-webpack-plugin');
|
||||
|
||||
|
||||
module.exports = merge(baseConfig, {
|
||||
mode: 'production',
|
||||
devtool: '#source-map',
|
||||
optimization: {
|
||||
minimize: true,
|
||||
minimizer: [
|
||||
new UglifyJsPlugin({
|
||||
test: /(vendor\.js)+/i
|
||||
})
|
||||
]
|
||||
}});
|
||||
new TerserPlugin({
|
||||
test: /vendor\.js(\?.*)?$/i,
|
||||
}),
|
||||
],
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user