Skip to content

Commit 04bc323

Browse files
Make webpack builds deterministic for CI dist check
1 parent d118cf3 commit 04bc323

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

export-and-sign/webpack.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,9 @@ module.exports = (env, argv) => {
8484
},
8585
},
8686
optimization: {
87+
// Reproducible builds so CI "dist matches committed" check passes
88+
moduleIds: "deterministic",
89+
chunkIds: "deterministic",
8790
splitChunks: {
8891
chunks: "all",
8992
cacheGroups: {

0 commit comments

Comments
 (0)