fixing webpack,comments

This commit is contained in:
2018-08-05 19:58:34 +02:00
parent b1039ee984
commit 671fb9b024
4 changed files with 5 additions and 12 deletions
-6
View File
@@ -6919,12 +6919,6 @@
"integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==",
"dev": true
},
"lodash-es": {
"version": "4.17.10",
"resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.10.tgz",
"integrity": "sha512-iesFYPmxYYGTcmQK0sL8bX3TGHyM6b2qREaB4kamHfQyfPJP0xgoGxp19nsH16nsfquLdiyKyX3mQkfiSGV8Rg==",
"dev": true
},
"lodash._baseassign": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz",
+1 -1
View File
@@ -15,7 +15,7 @@
"cross-env": "^5.1",
"jquery": "^3.2",
"laravel-mix": "^2.0",
"lodash-es": "^4.17.10",
"lodash": "^4.17.10",
"popper.js": "^1.12",
"vue": "^2.5.7",
"webpack-bundle-analyzer": "^2.13.1"
+3 -3
View File
@@ -1,5 +1,5 @@
// subset of used lodash modules
export { default as each } from 'lodash-es/each';
export { default as isUndefined } from 'lodash-es/isUndefined';
export { default as merge } from 'lodash-es/merge';
export { default as each } from 'lodash/each';
export { default as isUndefined } from 'lodash/isUndefined';
export { default as merge } from 'lodash/merge';
+1 -2
View File
@@ -25,9 +25,8 @@ mix.webpackConfig({
new webpack.ProvidePlugin({
'$': 'jquery',
jQuery: 'jquery',
lodash: 'lodash-es',
}),
//new BundleAnalyzerPlugin(),
new BundleAnalyzerPlugin(),
],
});