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.
This commit is contained in:
p-sw 2024-06-11 13:02:42 +09:00
parent 274016035f
commit 647e5c311d

View File

@ -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",