Skip to content

Commit

Permalink
fix: missing deps
Browse files Browse the repository at this point in the history
  • Loading branch information
hngngn committed Feb 13, 2024
1 parent 619a7f2 commit 4d43f5e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions apps/www/public/registry/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
{
"name": "date-picker",
"dependencies": ["@ark-ui/solid"],
"registryDependencies": ["button"],
"files": ["ui/date-picker.tsx"],
"type": "components:ui"
},
Expand Down
1 change: 1 addition & 0 deletions apps/www/public/registry/styles/default/date-picker.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "date-picker",
"dependencies": ["@ark-ui/solid"],
"registryDependencies": ["button"],
"files": [
{
"name": "date-picker.tsx",
Expand Down
2 changes: 1 addition & 1 deletion apps/www/src/__registry__/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export const Index = {
"date-picker": {
name: "date-picker",
type: "components:ui",
registryDependencies: undefined,
registryDependencies: ["button"],
component: lazy(() => import("@/registry/default/ui/date-picker")),
files: ["registry/default/ui/date-picker.tsx"]
},
Expand Down
1 change: 1 addition & 0 deletions apps/www/src/registry/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ const ui = [
{
name: "date-picker",
type: "components:ui",
registryDependencies: ["button"],
dependencies: ["@ark-ui/solid"],
files: ["ui/date-picker.tsx"]
},
Expand Down

0 comments on commit 4d43f5e

Please sign in to comment.