We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2707802 commit 78bd12cCopy full SHA for 78bd12c
ng-dev/ts-circular-dependencies/index.ts
@@ -115,7 +115,10 @@ export function main(
115
return 1;
116
}
117
if (cycles.length > 0) {
118
- Log.error(`x No circular dependencies are allow within this repository.`);
+ Log.error(
119
+ `x No circular dependencies are allow within this repository, but circular dependencies were found:`,
120
+ );
121
+ actual.forEach((c) => Log.error(` • ${convertReferenceChainToString(c)}`));
122
123
124
0 commit comments