We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 318c14f commit 76f2922Copy full SHA for 76f2922
src/node/utils/moduleGraph.ts
@@ -54,6 +54,8 @@ export class ModuleGraph {
54
*/
55
delete(module: string): Set<string> {
56
const deleted = new Set<string>()
57
+ if (!this.nodes.has(module)) deleted
58
+
59
const stack: string[] = [module]
60
61
// Traverse the reverse dependency graph (using dependents).
0 commit comments