mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-08 22:45:47 +00:00
* feat: implement shadcn/registry * feat: add schema field * fix: import * chore: add changeset * chore: remove console * fix: tests * fix: diff command * feat: move to schema/registy-item.json * fix * ci: switch to node 20 * ci: build packages * fix: types * chore: update schema * chore: update build registry script * feat(shadcn): add build command
16 lines
288 B
TypeScript
16 lines
288 B
TypeScript
import { type Registry } from "shadcn/registry"
|
|
|
|
export const lib: Registry["items"] = [
|
|
{
|
|
name: "utils",
|
|
type: "registry:lib",
|
|
dependencies: ["clsx", "tailwind-merge"],
|
|
files: [
|
|
{
|
|
path: "lib/utils.ts",
|
|
type: "registry:lib",
|
|
},
|
|
],
|
|
},
|
|
]
|