Skip to content

Commit

Permalink
build: use deterministic moduleIds (webpack)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasgerstmayr committed Oct 27, 2022
1 parent 5d99a7c commit cfbdc73
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Change Log

## 5.1.1 (unreleased)
## 5.1.1 (2022-10-27)

(empty)
* **build**: use deterministic moduleIds (webpack)


## 5.1.0 (2022-10-25)
Expand Down
1 change: 1 addition & 0 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ module.exports.getWebpackConfig = (config, options) => {
optimization: {
...config.optimization,
chunkIds: 'named', // required for dynamic imports in production build
moduleIds: 'deterministic', // required for reproducible builds
}
};
};

0 comments on commit cfbdc73

Please sign in to comment.