Files
shadcn-ui/apps/www/registry/registry-lib.ts
shadcn cb742e9825 feat: add new registry build command (#6350)
* 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
2025-01-14 15:59:41 +04:00

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",
},
],
},
]