Merge pull request #14595 from awanlin/topic/make-list-deprecations-visible-and-stable
Made list-deprecations visible and stable
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/cli': patch
|
||||
---
|
||||
|
||||
Updated the `backstage-cli` so that the `list-deprecations` command is visible and also removed the "[EXPERIMENTAL]" tag.
|
||||
@@ -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`
|
||||
|
||||
```
|
||||
|
||||
@@ -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)),
|
||||
|
||||
Reference in New Issue
Block a user