Skip to content

Commit 9cbe4f1

Browse files
fix: lint miss ;
1 parent 58cacb2 commit 9cbe4f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/optimize/CommonsChunkPlugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ Take a look at the "name"/"names" or async/children option.`);
257257
if(Array.isArray(selectedChunks)) {
258258
return allChunks.filter(chunk => {
259259
const notCommmonChunk = chunk !== targetChunk;
260-
const isSelectedChunk = selectedChunks.includes(chunk.name)
260+
const isSelectedChunk = selectedChunks.includes(chunk.name);
261261
return notCommmonChunk && isSelectedChunk;
262262
});
263263
}

0 commit comments

Comments
 (0)