-
Notifications
You must be signed in to change notification settings - Fork 293
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Webpack deterministic module ids #388
Conversation
Codecov Report
@@ Coverage Diff @@
## master #388 +/- ##
=======================================
Coverage 74.41% 74.41%
=======================================
Files 12 12
Lines 387 387
=======================================
Hits 288 288
Misses 99 99
Continue to review full report at Codecov.
|
Does this version of webpack include the feature to implement #315? |
Ah good point - that was just released in alpha.12 as well so I've added that to this PR too. |
optimization: { | ||
nodeEnv: false, | ||
minimize: false | ||
minimize: false, | ||
moduleIds: 'deterministic', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
deterministic module and chunk ids is the default in production mode anyway.
This adds the Webpack options for deterministic module ids.
This also includes the Webpack 5 alpha.12 upgrade.
Also [resolves]: #315