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
+4
View File
@@ -24,6 +24,7 @@ export const orgPlugin = createPlugin({
export const EntityGroupProfileCard = orgPlugin.provide(
createComponentExtension({
name: 'EntityGroupProfileCard',
component: {
lazy: () => import('./components').then(m => m.GroupProfileCard),
},
@@ -31,6 +32,7 @@ export const EntityGroupProfileCard = orgPlugin.provide(
);
export const EntityMembersListCard = orgPlugin.provide(
createComponentExtension({
name: 'EntityMembersListCard',
component: {
lazy: () => import('./components').then(m => m.MembersListCard),
},
@@ -38,6 +40,7 @@ export const EntityMembersListCard = orgPlugin.provide(
);
export const EntityOwnershipCard = orgPlugin.provide(
createComponentExtension({
name: 'EntityOwnershipCard',
component: {
lazy: () => import('./components').then(m => m.OwnershipCard),
},
@@ -45,6 +48,7 @@ export const EntityOwnershipCard = orgPlugin.provide(
);
export const EntityUserProfileCard = orgPlugin.provide(
createComponentExtension({
name: 'EntityUserProfileCard',
component: {
lazy: () => import('./components').then(m => m.UserProfileCard),
},