From d8825a0c10004102c3fe69361c5b1089e208dc11 Mon Sep 17 00:00:00 2001 From: p-sw Date: Thu, 6 Jun 2024 22:46:04 +0900 Subject: [PATCH] feat(react): add shared module URL to registry.json A new attribute "shared" has been added to the 'registry.json' file in the React package. This attribute contains the URL to the shared TypeScript module for components. --- packages/react/public/registry.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/react/public/registry.json b/packages/react/public/registry.json index 3a9e23a..5cf3d3c 100644 --- a/packages/react/public/registry.json +++ b/packages/react/public/registry.json @@ -1,5 +1,6 @@ { "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.ts", "components": { "button": "Button.tsx", "checkbox": "Checkbox.tsx",