We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2dbed5 commit bc76feeCopy full SHA for bc76fee
lib/Compilation.js
@@ -253,6 +253,7 @@ class Compilation extends Tapable {
253
this.childrenCounters = {};
254
this.usedChunkIds = null;
255
this.usedModuleIds = null;
256
+ this.compilationDependencies = undefined;
257
258
this._buildingModules = new Map();
259
this._rebuildingModules = new Map();
@@ -1593,7 +1594,7 @@ class Compilation extends Tapable {
1593
1594
}
1595
1596
summarizeDependencies() {
- this.fileDependencies = new SortableSet();
1597
+ this.fileDependencies = new SortableSet(this.compilationDependencies);
1598
this.contextDependencies = new SortableSet();
1599
this.missingDependencies = new SortableSet();
1600
0 commit comments