Skip to content

Commit e8664c3

Browse files
committed
Updated Webpack to v3 to solve bug related with the production build
1 parent aa8eb75 commit e8664c3

6 files changed

Lines changed: 250 additions & 76 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ This changelog references the relevant changes done between versions.
55
To get the diff for a specific change, go to https://github.com/LIN3S/AdminBundle/commit/XXX where XXX is the change hash
66
To get the diff between two versions, go to https://github.com/LIN3S/AdminBundle/compare/v0.4.0...v0.5.0
77

8+
* 0.5.1
9+
* Updated Webpack to v3 to solve bug related with the production build
10+
* Improved general js code to avoid minor bugs
811
* 0.5.0
912
* Made compatible with Twig v2.
1013
* Changed collection buttons for "a" to avoid unexpected submit events.

src/LIN3S/AdminBundle/Resources/private/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"sass-loader": "^6.0.3",
2525
"style-loader": "^0.13.1",
2626
"uglify-js": "^2.7.5",
27-
"webpack": "^2.2.1"
27+
"webpack": "^3.4.1"
2828
},
2929
"babel": {
3030
"presets": [

src/LIN3S/AdminBundle/Resources/private/webpack.bundle.config.babel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default {
2525
output: {
2626
path: `${outputPath}/js`,
2727
publicPath: '/',
28-
filename: '/bundle.min.js'
28+
filename: 'bundle.min.js'
2929
},
3030
module: {
3131
rules: [

0 commit comments

Comments
 (0)