Made list-deprecations visible and stable

Signed-off-by: Andre Wanlin <67169551+awanlin@users.noreply.github.com>
This commit is contained in:
Andre Wanlin
2022-11-12 14:45:01 -06:00
parent afa90a3e51
commit 946f7bfd6b
2 changed files with 13 additions and 2 deletions
+11
View File
@@ -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`
```
+2 -2
View File
@@ -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)),