We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cd42e2 commit 3acab7cCopy full SHA for 3acab7c
lib/optimize/MergeDuplicateChunksPlugin.js
@@ -9,7 +9,7 @@ module.exports = MergeDuplicateChunksPlugin;
9
function getChunkIdentifier(chunk) {
10
return chunk.modules.map(function(m) {
11
return m.identifier();
12
- }).join(", ");
+ }).sort().join(", ");
13
}
14
15
MergeDuplicateChunksPlugin.prototype.apply = function(compiler) {
0 commit comments