From 36a4cc605d724e738d06ff012ded2ce76e6bf0d4 Mon Sep 17 00:00:00 2001 From: p-sw Date: Tue, 11 Jun 2024 18:04:56 +0900 Subject: [PATCH] fix(react): correct library path in registry.json The path for the 'lib' key in registry.json was updated to point to the correct lib.tsx file. This change ensures that all relative imports function as expected. --- packages/react/public/registry.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react/public/registry.json b/packages/react/public/registry.json index d7443c0..6a14dc0 100644 --- a/packages/react/public/registry.json +++ b/packages/react/public/registry.json @@ -2,7 +2,7 @@ "base": "https://raw.githubusercontent.com/pswui/ui", "paths": { "components": "/main/packages/react/components/{componentName}", - "lib": "/main/packages/react/lib/tsx" + "lib": "/main/packages/react/lib.tsx" }, "components": { "button": { "name": "Button.tsx" },