Skip to content

Commit

Permalink
fix(nx): correct the message for the removal of a project that is sti…
Browse files Browse the repository at this point in the history
…ll a dependency of other projects. (#18903)
  • Loading branch information
Teebo committed Aug 30, 2023
1 parent ec647e7 commit 70d3728
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -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')}`
);
Expand Down

0 comments on commit 70d3728

Please sign in to comment.