fix(react): correct library path in registry.json

The path for the 'lib' key in registry.json was updated to point to the correct lib.tsx file. This change ensures that all relative imports function as expected.
This commit is contained in:
p-sw 2024-06-11 18:04:56 +09:00
parent 99773f11cc
commit 36a4cc605d

View File

@ -2,7 +2,7 @@
"base": "https://raw.githubusercontent.com/pswui/ui",
"paths": {
"components": "/main/packages/react/components/{componentName}",
"lib": "/main/packages/react/lib/tsx"
"lib": "/main/packages/react/lib.tsx"
},
"components": {
"button": { "name": "Button.tsx" },