cli-node: document null pluginId

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2024-06-12 17:40:19 +02:00
parent 4f2084267e
commit 66aa12fa9c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ export interface BackstagePackageJson {
backstage?: {
role?: PackageRole;
moved?: string;
pluginId?: string;
pluginId?: string | null;
pluginPackage?: string;
pluginPackages?: string[];
};
@@ -48,7 +48,7 @@ export interface BackstagePackageJson {
moved?: string;
/**
* The ID of the plugin if this is a plugin package. Must always be set for plugin and module packages, and may be set for library packages.
* The ID of the plugin if this is a plugin package. Must always be set for plugin and module packages, and may be set for library packages. A `null` value means that the package is explicitly not a plugin package.
*/
pluginId?: string | null;