Skip to content

Commit

Permalink
Merge pull request #24 from L-Qun/main
Browse files Browse the repository at this point in the history
Try to fix the CI issue.
  • Loading branch information
L-Qun authored Dec 17, 2024
2 parents c56773a + 79c0187 commit fb9de03
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
10 changes: 10 additions & 0 deletions common/changes/rush-dep-graph-plugin/main_2024-12-17-02-19.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "rush-dep-graph-plugin",
"comment": "Try to fix the CI issue",
"type": "none"
}
],
"packageName": "rush-dep-graph-plugin"
}
5 changes: 2 additions & 3 deletions rush-plugins/rush-dep-graph-plugin/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { Terminal, ConsoleTerminalProvider } from '@rushstack/terminal';
import { Terminal, ConsoleTerminalProvider, Colorize } from '@rushstack/terminal';
import archy from 'archy';
import { RushConfiguration, RushConfigurationProject } from '@rushstack/rush-sdk';
import chalk from 'chalk';

export const enum Selector {
To = 'to',
Expand Down Expand Up @@ -46,7 +45,7 @@ export class ListGraph {
}

if (this._visited.has(projectName)) {
data.label = data.label + chalk.yellow(' (circular)');
data.label = data.label + Colorize.yellow(' (circular)');
return;
}

Expand Down

0 comments on commit fb9de03

Please sign in to comment.