Apply extension-names codemod to monorepo.

Signed-off-by: Eric Peterson <ericpeterson@spotify.com>
This commit is contained in:
Eric Peterson
2021-10-04 19:16:25 +02:00
parent 903dbdeb7d
commit 81a41ec249
49 changed files with 173 additions and 3 deletions
+3
View File
@@ -41,6 +41,7 @@ export const cloudbuildPlugin = createPlugin({
export const EntityCloudbuildContent = cloudbuildPlugin.provide(
createRoutableExtension({
name: 'EntityCloudbuildContent',
component: () => import('./components/Router').then(m => m.Router),
mountPoint: rootRouteRef,
}),
@@ -48,6 +49,7 @@ export const EntityCloudbuildContent = cloudbuildPlugin.provide(
export const EntityLatestCloudbuildRunCard = cloudbuildPlugin.provide(
createComponentExtension({
name: 'EntityLatestCloudbuildRunCard',
component: {
lazy: () =>
import('./components/Cards').then(m => m.LatestWorkflowRunCard),
@@ -57,6 +59,7 @@ export const EntityLatestCloudbuildRunCard = cloudbuildPlugin.provide(
export const EntityLatestCloudbuildsForBranchCard = cloudbuildPlugin.provide(
createComponentExtension({
name: 'EntityLatestCloudbuildsForBranchCard',
component: {
lazy: () =>
import('./components/Cards').then(m => m.LatestWorkflowsForBranchCard),