Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion ng-dev/ts-circular-dependencies/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,10 @@ export function main(
return 1;
}
if (cycles.length > 0) {
Log.error(`x No circular dependencies are allow within this repository.`);
Log.error(
`x No circular dependencies are allow within this repository, but circular dependencies were found:`,
);
actual.forEach((c) => Log.error(` • ${convertReferenceChainToString(c)}`));
return 1;
}

Expand Down