We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e906f1 commit b732e1bCopy full SHA for b732e1b
lib/ContextModule.js
@@ -245,11 +245,11 @@ webpackEmptyContext.id = ${JSON.stringify(id)};`;
245
246
size() {
247
// base penalty
248
- const initialCount = 160;
+ const initialSize = 160;
249
250
// if we dont have dependencies we stop here.
251
return this.dependencies
252
- .reduce((count, dependency) => count + 5 + dependency.userRequest.length, initialCount);
+ .reduce((size, dependency) => size + 5 + dependency.userRequest.length, initialSize);
253
}
254
255
0 commit comments