We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89bc16c commit c1346f5Copy full SHA for c1346f5
lib/optimize/MinChunkSizePlugin.js
@@ -32,8 +32,8 @@ class MinChunkSizePlugin {
32
}, []).filter((pair) => {
33
// check if one of the chunks sizes is smaller than the minChunkSize
34
const p0SmallerThanMinChunkSize = pair[0].size(equalOptions) < minChunkSize;
35
- const p1mallerThanMinChunkSize = pair[1].size(equalOptions) < minChunkSize;
36
- return p0SmallerThanMinChunkSize || p1mallerThanMinChunkSize;
+ const p1SmallerThanMinChunkSize = pair[1].size(equalOptions) < minChunkSize;
+ return p0SmallerThanMinChunkSize || p1SmallerThanMinChunkSize;
37
}).map((pair) => {
38
// extend combination pairs with size and integrated size
39
const a = pair[0].size(options);
0 commit comments