Merge pull request #7435 from backstage/codemod/extension-names

Add names to all core extensions provided by plugins
This commit is contained in:
Eric Peterson
2021-10-05 16:21:43 +02:00
committed by GitHub
52 changed files with 272 additions and 3 deletions
+2
View File
@@ -23,6 +23,7 @@ import {
export const EntityFossaCard = fossaPlugin.provide(
createComponentExtension({
name: 'EntityFossaCard',
component: {
lazy: () => import('./components/FossaCard').then(m => m.FossaCard),
},
@@ -31,6 +32,7 @@ export const EntityFossaCard = fossaPlugin.provide(
export const FossaPage = fossaPlugin.provide(
createRoutableExtension({
name: 'FossaPage',
component: () => import('./components/FossaPage').then(m => m.FossaPage),
mountPoint: rootRoute,
}),