Registry
Explore community-led codemods to migrate, optimize, and transform your codebase.
Ready to contribute?
Build your own codemod and share it with the community.
Explore community-led codemods to migrate, optimize, and transform your codebase.
Build your own codemod and share it with the community.
Backstage 1.50.0: Replace createSchemaFromZod and config.schema with configSchema
Build your own codemod and share it with the community.
1 import { createExtensionBlueprint } from '@backstage/frontend-plugin-api';
2
3 createExtensionBlueprint({
4 name: 'column-blueprint',
5 config: {
6 schema: {
7 attachTo: z => z.array(z.union([z.string(), z.object({ tab: z.string(), multi: z.boolean().optional() })])),
8 },
9 },
10 });
11