From c17fb12ee6b209c196231512b36d0e6f5bb83d3d Mon Sep 17 00:00:00 2001 From: vsavkin Date: Sun, 4 Jul 2021 20:06:38 -0400 Subject: [PATCH] fix(misc): dep graph should not remove deps --- packages/workspace/src/command-line/dep-graph.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/workspace/src/command-line/dep-graph.ts b/packages/workspace/src/command-line/dep-graph.ts index 65f1fef2bd..78bd1b4921 100644 --- a/packages/workspace/src/command-line/dep-graph.ts +++ b/packages/workspace/src/command-line/dep-graph.ts @@ -507,6 +507,7 @@ function createFileWatcher(root: string, changeHandler: () => void) { function createDepGraphClientResponse(): DepGraphClientResponse { performance.mark('dep graph watch calculation:start'); defaultFileHasher.clear(); + defaultFileHasher.init(); let graph = onlyWorkspaceProjects(createProjectGraph()); performance.mark('dep graph watch calculation:end');