Skip to content

Commit

Permalink
fix(misc): fix buildable libs utils calculating dependent projects fr…
Browse files Browse the repository at this point in the history
…om task graph (#22015)
  • Loading branch information
leosvelperez committed Feb 29, 2024
1 parent 5971ae1 commit 7879b3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/js/src/utils/buildable-libs-utils.ts
Expand Up @@ -258,7 +258,7 @@ export function calculateDependenciesFromTaskGraph(
const depTask = taskGraph.tasks[taskName];
const depProjectNode = projectGraph.nodes?.[depTask.target.project];
if (depProjectNode?.type !== 'lib') {
return null;
continue;
}

let outputs = getOutputsForTargetAndConfiguration(
Expand Down

0 comments on commit 7879b3f

Please sign in to comment.