Skip to content

Commit 7d96b2a

Browse files
committed
Updated webpack-encore recipe
1 parent 50f4c01 commit 7d96b2a

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

symfony.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -795,12 +795,12 @@
795795
]
796796
},
797797
"symfony/webpack-encore-bundle": {
798-
"version": "2.1",
798+
"version": "2.2",
799799
"recipe": {
800800
"repo": "github.com/symfony/recipes",
801801
"branch": "main",
802802
"version": "2.0",
803-
"ref": "082d754b3bd54b3fc669f278f1eea955cfd23cf5"
803+
"ref": "9ef5412a4a2a8415aca3a3f2b4edd3866aab9a19"
804804
},
805805
"files": [
806806
"assets/app.js",

webpack.config.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,10 @@ Encore
8686
* https://symfony.com/doc/current/frontend.html#adding-more-features
8787
*/
8888
.cleanupOutputBeforeBuild()
89-
.enableBuildNotifications()
89+
90+
// Displays build status system notifications to the user
91+
// .enableBuildNotifications()
92+
9093
.enableSourceMaps(!Encore.isProduction())
9194
// enables hashed filenames (e.g. app.abc123.css)
9295
//.enableVersioning(Encore.isProduction())
@@ -102,7 +105,7 @@ Encore
102105
// enables and configure @babel/preset-env polyfills
103106
.configureBabelPresetEnv((config) => {
104107
config.useBuiltIns = 'usage';
105-
config.corejs = '3.23';
108+
config.corejs = '3.38';
106109
})
107110
// enables Sass/SCSS support
108111
//.enableSassLoader()

0 commit comments

Comments
 (0)