chore: run api build command

Signed-off-by: djamaile <rdjamaile@gmail.com>
This commit is contained in:
djamaile
2022-11-23 16:06:50 +01:00
parent 7f8c32a54b
commit 71f80eb354
3 changed files with 16 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/repo-tools': minor
---
add the command type-deps to the repo tool package.
+10
View File
@@ -13,6 +13,7 @@ Options:
Commands:
api-reports [options] [path...]
type-deps
help [command]
```
@@ -27,3 +28,12 @@ Options:
--docs
-h, --help
```
### `backstage-repo-tools type-deps`
```
Usage: backstage-repo-tools type-deps [options]
Options:
-h, --help
```
@@ -31,6 +31,7 @@ export function registerCommands(program: Command) {
program
.command('type-deps')
.description('Find inconsistencies in types of all packages and plugins')
.action(lazy(() => import('./type-deps/type-deps').then(m => m.default)));
}