fix: missing commands in backstage-cli-alpha
Signed-off-by: aramissennyeydd <aramis.sennyey@doordash.com>
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/cli': minor
|
||||
---
|
||||
|
||||
Add missing modules to the Backstage CLI alpha entrypoint.
|
||||
@@ -241,8 +241,12 @@ Options:
|
||||
|
||||
Commands:
|
||||
build
|
||||
clean
|
||||
help [command]
|
||||
lint
|
||||
postpack
|
||||
prepack
|
||||
start
|
||||
test
|
||||
```
|
||||
|
||||
@@ -260,6 +264,15 @@ Options:
|
||||
-h, --help
|
||||
```
|
||||
|
||||
### `backstage-cli-alpha package clean`
|
||||
|
||||
```
|
||||
Usage: program [options]
|
||||
|
||||
Options:
|
||||
-h, --help
|
||||
```
|
||||
|
||||
### `backstage-cli-alpha package lint`
|
||||
|
||||
```
|
||||
@@ -273,6 +286,40 @@ Options:
|
||||
-h, --help
|
||||
```
|
||||
|
||||
### `backstage-cli-alpha package postpack`
|
||||
|
||||
```
|
||||
Usage: program [options]
|
||||
|
||||
Options:
|
||||
-h, --help
|
||||
```
|
||||
|
||||
### `backstage-cli-alpha package prepack`
|
||||
|
||||
```
|
||||
Usage: program [options]
|
||||
|
||||
Options:
|
||||
-h, --help
|
||||
```
|
||||
|
||||
### `backstage-cli-alpha package start`
|
||||
|
||||
```
|
||||
Usage: program [options]
|
||||
|
||||
Options:
|
||||
--check
|
||||
--config <path>
|
||||
--inspect [host]
|
||||
--inspect-brk [host]
|
||||
--link <path>
|
||||
--require <path...>
|
||||
--role <name>
|
||||
-h, --help
|
||||
```
|
||||
|
||||
### `backstage-cli-alpha package test`
|
||||
|
||||
```
|
||||
@@ -397,8 +444,12 @@ Options:
|
||||
|
||||
Commands:
|
||||
build
|
||||
clean
|
||||
fix
|
||||
help [command]
|
||||
lint
|
||||
list-deprecations
|
||||
start
|
||||
test
|
||||
```
|
||||
|
||||
@@ -414,6 +465,26 @@ Options:
|
||||
-h, --help
|
||||
```
|
||||
|
||||
### `backstage-cli-alpha repo clean`
|
||||
|
||||
```
|
||||
Usage: program [options]
|
||||
|
||||
Options:
|
||||
-h, --help
|
||||
```
|
||||
|
||||
### `backstage-cli-alpha repo fix`
|
||||
|
||||
```
|
||||
Usage: program [options]
|
||||
|
||||
Options:
|
||||
--check
|
||||
--publish
|
||||
-h, --help
|
||||
```
|
||||
|
||||
### `backstage-cli-alpha repo lint`
|
||||
|
||||
```
|
||||
@@ -430,6 +501,31 @@ Options:
|
||||
-h, --help
|
||||
```
|
||||
|
||||
### `backstage-cli-alpha repo list-deprecations`
|
||||
|
||||
```
|
||||
Usage: program [options]
|
||||
|
||||
Options:
|
||||
--json
|
||||
-h, --help
|
||||
```
|
||||
|
||||
### `backstage-cli-alpha repo start`
|
||||
|
||||
```
|
||||
Usage: program [options] [...packageNameOrPath]
|
||||
|
||||
Options:
|
||||
--config <path>
|
||||
--inspect [host]
|
||||
--inspect-brk [host]
|
||||
--link <path>
|
||||
--plugin <pluginId>
|
||||
--require <path...>
|
||||
-h, --help
|
||||
```
|
||||
|
||||
### `backstage-cli-alpha repo test`
|
||||
|
||||
```
|
||||
|
||||
@@ -25,13 +25,15 @@ import chalk from 'chalk';
|
||||
),
|
||||
);
|
||||
const initializer = new CliInitializer();
|
||||
initializer.add(import('./modules/new/alpha'));
|
||||
initializer.add(import('./modules/build/alpha'));
|
||||
initializer.add(import('./modules/config/alpha'));
|
||||
initializer.add(import('./modules/create-github-app/alpha'));
|
||||
initializer.add(import('./modules/info/alpha'));
|
||||
initializer.add(import('./modules/config/alpha'));
|
||||
initializer.add(import('./modules/build/alpha'));
|
||||
initializer.add(import('./modules/migrate/alpha'));
|
||||
initializer.add(import('./modules/test/alpha'));
|
||||
initializer.add(import('./modules/lint/alpha'));
|
||||
initializer.add(import('./modules/maintenance/alpha'));
|
||||
initializer.add(import('./modules/migrate/alpha'));
|
||||
initializer.add(import('./modules/new/alpha'));
|
||||
initializer.add(import('./modules/start/alpha'));
|
||||
initializer.add(import('./modules/test/alpha'));
|
||||
await initializer.run();
|
||||
})();
|
||||
|
||||
Reference in New Issue
Block a user