@@ -23,6 +23,7 @@ Commands:
|
||||
migrate [command]
|
||||
versions:bump [options]
|
||||
versions:check [options]
|
||||
versions:migrate [options]
|
||||
clean
|
||||
build-workspace [options] <workspace-dir> [packages...]
|
||||
create-github-app <github-org>
|
||||
@@ -600,6 +601,7 @@ Options:
|
||||
--pattern <glob>
|
||||
--release <version|next|main>
|
||||
--skip-install
|
||||
--skip-migrate
|
||||
-h, --help
|
||||
```
|
||||
|
||||
@@ -612,3 +614,13 @@ Options:
|
||||
--fix
|
||||
-h, --help
|
||||
```
|
||||
|
||||
### `backstage-cli versions:migrate`
|
||||
|
||||
```
|
||||
Usage: backstage-cli versions:migrate [options]
|
||||
|
||||
Options:
|
||||
--pattern <glob>
|
||||
-h, --help
|
||||
```
|
||||
|
||||
@@ -27,16 +27,12 @@ const DEP_TYPES = [
|
||||
'optionalDependencies',
|
||||
] as const;
|
||||
|
||||
// Package data as returned by `yarn info`. This is an uncomplete type fullfilling the required needs in the CLI
|
||||
// Package data as returned by `yarn info`
|
||||
export type YarnInfoInspectData = {
|
||||
name: string;
|
||||
'dist-tags': Record<string, string>;
|
||||
versions: string[];
|
||||
time: { [version: string]: string };
|
||||
backstage?: {
|
||||
role?: string;
|
||||
moved?: string;
|
||||
};
|
||||
};
|
||||
|
||||
// Possible `yarn info` output
|
||||
|
||||
Reference in New Issue
Block a user