fix(nx): correct the message for the removal of a project that is still a dependency of other projects. (#18903)

This commit is contained in:
Thabo 2023-08-30 16:09:13 +02:00 committed by GitHub
parent ec647e7250
commit 70d3728457
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,7 @@ export async function checkDependencies(_, schema: Schema): Promise<void> {
throw new Error(
`${
schema.projectName
} is still depended on by the following projects:\n${deps
} is still a dependency of the following projects:\n${deps
.map((x) => x.target)
.join('\n')}`
);