From 670fa9d1bcdf99908309a91bc74ae1a0a2508b22 Mon Sep 17 00:00:00 2001 From: p-sw Date: Tue, 11 Jun 2024 17:58:42 +0900 Subject: [PATCH] refactor(react): update registry.json paths and remove version The registry.json file in the React package has been refactored. The paths have been updated for cleaner and simpler referencing. Additionally, the versioning from the 'lib' section, which was previously hard-coded, has been removed to allow for more flexibility and ease of updates in the future. --- packages/react/public/registry.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/packages/react/public/registry.json b/packages/react/public/registry.json index 30b0b37..d7443c0 100644 --- a/packages/react/public/registry.json +++ b/packages/react/public/registry.json @@ -2,11 +2,8 @@ "base": "https://raw.githubusercontent.com/pswui/ui", "paths": { "components": "/main/packages/react/components/{componentName}", - "lib": "/main/packages/react/lib/shared@{version}.tsx" + "lib": "/main/packages/react/lib/tsx" }, - "lib": [ - "1.0.0" - ], "components": { "button": { "name": "Button.tsx" }, "checkbox": { "name": "Checkbox.tsx" },