cli: added repository field check to repo fix

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2024-02-07 15:19:00 +01:00
parent eab6182032
commit d557d47cb5
5 changed files with 83 additions and 1 deletions
@@ -58,6 +58,14 @@ export interface BackstagePackageJson {
registry?: string;
};
repository?:
| string
| {
type: string;
url: string;
directory: string;
};
dependencies?: {
[key: string]: string;
};