From 647e5c311d3633cc10153fa0882c5af83f476fc3 Mon Sep 17 00:00:00 2001 From: p-sw Date: Tue, 11 Jun 2024 13:02:42 +0900 Subject: [PATCH] refactor(react): update registry.json structure The structure of registry.json within the React package has been reorganized. Paths for base, components, and lib have been adjusted and a new field "paths" has been introduced. Additionally, the lib entry has been changed to an array. --- packages/react/public/registry.json | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/packages/react/public/registry.json b/packages/react/public/registry.json index 3fd20f7..76b0d2c 100644 --- a/packages/react/public/registry.json +++ b/packages/react/public/registry.json @@ -1,8 +1,12 @@ { - "base": "https://raw.githubusercontent.com/pswui/ui/main/packages/react/components/{componentName}", - "lib": { - "1.0.0": "https://raw.githubusercontent.com/pswui/ui/main/packages/react/lib/shared@1.0.0.tsx" + "base": "https://raw.githubusercontent.com/pswui/ui/main/packages/react/componeonts/{componentName}", + "paths": { + "components": "/main/packages/react/components/{componentName}", + "lib": "/main/packages/react/lib/shared@{version}.tsx" }, + "lib": [ + "1.0.0" + ], "components": { "button": "Button.tsx", "checkbox": "Checkbox.tsx",