Skip to content

Commit cfbdc73

Browse files
build: use deterministic moduleIds (webpack)
1 parent 5d99a7c commit cfbdc73

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Change Log
22

3-
## 5.1.1 (unreleased)
3+
## 5.1.1 (2022-10-27)
44

5-
(empty)
5+
* **build**: use deterministic moduleIds (webpack)
66

77

88
## 5.1.0 (2022-10-25)

webpack.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ module.exports.getWebpackConfig = (config, options) => {
107107
optimization: {
108108
...config.optimization,
109109
chunkIds: 'named', // required for dynamic imports in production build
110+
moduleIds: 'deterministic', // required for reproducible builds
110111
}
111112
};
112113
};

0 commit comments

Comments
 (0)