fixing webpack,comments
This commit is contained in:
Generated
-6
@@ -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
@@ -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"
|
||||
|
||||
Vendored
+3
-3
@@ -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';
|
||||
|
||||
Vendored
+1
-2
@@ -25,9 +25,8 @@ mix.webpackConfig({
|
||||
new webpack.ProvidePlugin({
|
||||
'$': 'jquery',
|
||||
jQuery: 'jquery',
|
||||
lodash: 'lodash-es',
|
||||
}),
|
||||
//new BundleAnalyzerPlugin(),
|
||||
new BundleAnalyzerPlugin(),
|
||||
],
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user