Skip to content

Commit

Permalink
fix(core): merge implicit project dependencies only if found on new a…
Browse files Browse the repository at this point in the history
…nd matching projects (#18896)
  • Loading branch information
AgentEnder authored Aug 29, 2023
1 parent 903e96b commit 7e50274
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export function mergeProjectConfigurationIntoRootMap(
);
}

if (project.implicitDependencies && matchingProject.tags) {
if (project.implicitDependencies && matchingProject.implicitDependencies) {
updatedProjectConfiguration.implicitDependencies =
matchingProject.implicitDependencies.concat(project.implicitDependencies);
}
Expand Down

0 comments on commit 7e50274

Please sign in to comment.