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.
TypeError: Failed to process project dependencies
1 parent 05562aa commit ca7f96cCopy full SHA for ca7f96c
packages/common/src/lib/workspace/project-graph.ts
@@ -73,6 +73,9 @@ function getDependenciesForProject(
73
const sourceProjectRoot = getProjectRootFromFile(filePath);
74
const sourcePkgInfo = workspace.projects[sourceProjectRoot];
75
76
+ if(!sourcePkgInfo)
77
+ return dependencies;
78
+
79
sourcePkgInfo.dependencies?.forEach((depPkgInfo) => {
80
const targetProjectName = workspace.packages[depPkgInfo.packageId];
81
0 commit comments