From 946db4efd0cf87f7b974c20c47b204f2159f4e79 Mon Sep 17 00:00:00 2001 From: p-sw Date: Tue, 11 Jun 2024 12:59:45 +0900 Subject: [PATCH] feat(react): update URLs in registry.json The URLs for base and shared components in registry.json have been updated to reflect the new repository location. Additionally, a new URL for the library version 1.0.0 has been added under 'lib'. --- packages/react/public/registry.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/react/public/registry.json b/packages/react/public/registry.json index 93f2ed6..3fd20f7 100644 --- a/packages/react/public/registry.json +++ b/packages/react/public/registry.json @@ -1,6 +1,8 @@ { - "base": "https://raw.githubusercontent.com/p-sw/ui/main/packages/react/components/{componentName}", - "shared": "https://raw.githubusercontent.com/p-sw/ui/main/packages/react/shared.tsx", + "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" + }, "components": { "button": "Button.tsx", "checkbox": "Checkbox.tsx",