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
  • Loading branch information
leosvelperez committed Feb 28, 2024
1 parent 8fb5b05 commit 65d2476
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/js/src/utils/buildable-libs-utils.ts
Original file line number Diff line number Diff line change
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 65d2476

Please sign in to comment.