Skip to content

Commit

Permalink
fix(core): properly track plugin & file in create nodes result
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxKless committed Apr 17, 2024
1 parent 920f2e5 commit b013d81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nx/src/project-graph/plugins/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export async function runCreateNodesInParallel(
// Existing behavior is to ignore null results of
// createNodes function.
if (r) {
results.push(r);
results.push({ ...r, file, pluginName: plugin.name });
}
});
});
Expand Down

0 comments on commit b013d81

Please sign in to comment.