* Build the current registry. * Export the blocks as JSON and import them into registry.json. * Move the registry.json into public/r. * Fix a prettier error. * Clean up extra files in vue blocks. * Bump shadcn. * Readd shadcn to vue blocks. * Fix the shadcn types. * Remove extra package exclusions.
8 lines
492 B
TypeScript
8 lines
492 B
TypeScript
import type { RegistryItem } from 'shadcn/schema'
|
|
import nextjs from './default/clients/nextjs/registry-item.json' with { type: 'json' }
|
|
import reactRouter from './default/clients/react-router/registry-item.json' with { type: 'json' }
|
|
import react from './default/clients/react/registry-item.json' with { type: 'json' }
|
|
import tanstack from './default/clients/tanstack/registry-item.json' with { type: 'json' }
|
|
|
|
export const clients = [nextjs, react, reactRouter, tanstack] as RegistryItem[]
|