Skip to content

Commit 114abee

Browse files
committed
fix merge issue
1 parent af90de8 commit 114abee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/optimize/EnsureChunkConditionsPlugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class EnsureChunkConditionsPlugin {
1313
let changed = false;
1414
chunks.forEach((chunk) => {
1515
for(const module of chunk.modulesIterable) {
16-
if(!module.chunkCondition) return;
16+
if(!module.chunkCondition) continue;
1717
if(!module.chunkCondition(chunk)) {
1818
let usedChunks = triesMap.get(module);
1919
if(!usedChunks) triesMap.set(module, usedChunks = new Set());

0 commit comments

Comments
 (0)