fix(core): merge implicit project dependencies only if found on new and matching projects (#18896)

This commit is contained in:
Craigory Coppola 2023-08-29 17:35:06 -05:00 committed by GitHub
parent 903e96b252
commit 7e5027498d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -51,7 +51,7 @@ export function mergeProjectConfigurationIntoRootMap(
);
}
if (project.implicitDependencies && matchingProject.tags) {
if (project.implicitDependencies && matchingProject.implicitDependencies) {
updatedProjectConfiguration.implicitDependencies =
matchingProject.implicitDependencies.concat(project.implicitDependencies);
}