diff --git a/.changeset/thick-tools-tan.md b/.changeset/thick-tools-tan.md new file mode 100644 index 0000000000..19c63f53fe --- /dev/null +++ b/.changeset/thick-tools-tan.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-catalog': minor +--- + +**BREAKING**: Removed the old `plugin` export, use `catalogPlugin` instead. diff --git a/plugins/catalog/api-report.md b/plugins/catalog/api-report.md index 608f7a8515..e2cc0c8ba6 100644 --- a/plugins/catalog/api-report.md +++ b/plugins/catalog/api-report.md @@ -80,7 +80,7 @@ export interface CatalogKindHeaderProps { } // @public (undocumented) -const catalogPlugin: BackstagePlugin< +export const catalogPlugin: BackstagePlugin< { catalogIndex: RouteRef; catalogEntity: RouteRef<{ @@ -101,8 +101,6 @@ const catalogPlugin: BackstagePlugin< >; } >; -export { catalogPlugin }; -export { catalogPlugin as plugin }; // @public (undocumented) export function CatalogResultListItem( diff --git a/plugins/catalog/src/index.ts b/plugins/catalog/src/index.ts index 10da3c9d6d..0e59355691 100644 --- a/plugins/catalog/src/index.ts +++ b/plugins/catalog/src/index.ts @@ -35,7 +35,6 @@ export { CatalogEntityPage, CatalogIndexPage, catalogPlugin, - catalogPlugin as plugin, EntityAboutCard, EntityDependencyOfComponentsCard, EntityDependsOnComponentsCard,