diff --git a/packages/cli/cli-report.md b/packages/cli/cli-report.md index 9afd12fb48..aef56380d2 100644 --- a/packages/cli/cli-report.md +++ b/packages/cli/cli-report.md @@ -390,6 +390,7 @@ Commands: build [options] lint [options] clean + list-deprecations [options] test [options] help [command] ``` @@ -426,6 +427,16 @@ Options: -h, --help ``` +### `backstage-cli repo list-deprecations` + +``` +Usage: backstage-cli repo list-deprecations [options] + +Options: + --json + -h, --help +``` + ### `backstage-cli repo test` ``` diff --git a/packages/cli/src/commands/index.ts b/packages/cli/src/commands/index.ts index 266b4fd9f1..82cb60e62f 100644 --- a/packages/cli/src/commands/index.ts +++ b/packages/cli/src/commands/index.ts @@ -66,8 +66,8 @@ export function registerRepoCommand(program: Command) { .action(lazy(() => import('./repo/clean').then(m => m.command))); command - .command('list-deprecations', { hidden: true }) - .description('List deprecations. [EXPERIMENTAL]') + .command('list-deprecations') + .description('List deprecations') .option('--json', 'Output as JSON') .action( lazy(() => import('./repo/list-deprecations').then(m => m.command)),