Skip to content

Commit b380069

Browse files
docs: add cli docs (#5)
1 parent 2ad00d9 commit b380069

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+519
-313
lines changed

apps/www/__registry__/index.tsx

+35
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,34 @@ export const Index: Record<string, any> = {
236236
component: React.lazy(() => import("@/registry/default/ui/button")),
237237
files: ["registry/default/ui/button.tsx"],
238238
},
239+
"card": {
240+
name: "card",
241+
type: "components:ui",
242+
registryDependencies: undefined,
243+
component: React.lazy(() => import("@/registry/default/ui/card")),
244+
files: ["registry/default/ui/card.tsx"],
245+
},
246+
"input": {
247+
name: "input",
248+
type: "components:ui",
249+
registryDependencies: undefined,
250+
component: React.lazy(() => import("@/registry/default/ui/input")),
251+
files: ["registry/default/ui/input.tsx"],
252+
},
253+
"label": {
254+
name: "label",
255+
type: "components:ui",
256+
registryDependencies: undefined,
257+
component: React.lazy(() => import("@/registry/default/ui/label")),
258+
files: ["registry/default/ui/label.tsx"],
259+
},
260+
"select": {
261+
name: "select",
262+
type: "components:ui",
263+
registryDependencies: undefined,
264+
component: React.lazy(() => import("@/registry/default/ui/select")),
265+
files: ["registry/default/ui/select.tsx"],
266+
},
239267
"dialog": {
240268
name: "dialog",
241269
type: "components:ui",
@@ -481,5 +509,12 @@ export const Index: Record<string, any> = {
481509
component: React.lazy(() => import("@/registry/default/example/error-message-demo")),
482510
files: ["registry/default/example/error-message-demo.tsx"],
483511
},
512+
"card-with-form": {
513+
name: "card-with-form",
514+
type: "components:example",
515+
registryDependencies: ["button","card","input","label","select"],
516+
component: React.lazy(() => import("@/registry/default/example/card-with-form")),
517+
files: ["registry/default/example/card-with-form.tsx"],
518+
},
484519
},
485520
}

apps/www/config/docs.ts

+45
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,56 @@ export const docsConfig: DocsConfig = {
3535
href: "/docs",
3636
items: [],
3737
},
38+
{
39+
title: "Installation",
40+
href: "/docs/installation",
41+
items: [],
42+
},
43+
{
44+
title: "components.json",
45+
href: "/docs/components-json",
46+
items: [],
47+
},
48+
{
49+
title: "CLI",
50+
href: "/docs/cli",
51+
items: [],
52+
},
3853
],
3954
},
4055
{
4156
title: "Installation",
4257
items: [
58+
{
59+
title: "Next.js",
60+
href: "/docs/installation/next",
61+
items: [],
62+
},
63+
{
64+
title: "Vite",
65+
href: "/docs/installation/vite",
66+
items: [],
67+
},
68+
{
69+
title: "Remix",
70+
href: "/docs/installation/remix",
71+
items: [],
72+
},
73+
{
74+
title: "Gatsby",
75+
href: "/docs/installation/gatsby",
76+
items: [],
77+
},
78+
{
79+
title: "Astro",
80+
href: "/docs/installation/astro",
81+
items: [],
82+
},
83+
{
84+
title: "Laravel",
85+
href: "/docs/installation/laravel",
86+
items: [],
87+
},
4388
{
4489
title: "Manual",
4590
href: "/docs/installation/manual",

apps/www/content/docs/cli.mdx

+134
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
---
2+
title: CLI
3+
description: Use the CLI to add components to your project.
4+
---
5+
6+
## init
7+
8+
Use the `init` command to initialize configuration and dependencies for a new project.
9+
10+
The `init` command installs dependencies, adds the `cn` util, configures `tailwind.config.js`, and CSS variables for the project.
11+
12+
```bash
13+
npx buidl-cli@latest init
14+
```
15+
16+
You will be asked a few questions to configure `components.json`:
17+
18+
```txt showLineNumbers
19+
Would you like to use TypeScript (recommended)? no/yes
20+
Which style would you like to use? › Default
21+
Which color would you like to use as base color? › Slate
22+
Where is your global CSS file? › › app/globals.css
23+
Do you want to use CSS variables for colors? › no / yes
24+
Where is your tailwind.config.js located? › tailwind.config.js
25+
Configure the import alias for components: › @/components
26+
Configure the import alias for utils: › @/lib/utils
27+
Are you using React Server Components? › no / yes
28+
```
29+
30+
### Options
31+
32+
```txt
33+
Usage: buidl-cli init [options]
34+
35+
initialize your project and install dependencies
36+
37+
Options:
38+
-y, --yes skip confirmation prompt. (default: false)
39+
-c, --cwd <cwd> the working directory. defaults to the current directory.
40+
-h, --help display help for command
41+
```
42+
43+
## add
44+
45+
Use the `add` command to add components and dependencies to your project.
46+
47+
```bash
48+
npx buidl-cli@latest add [component]
49+
```
50+
51+
You will be presented with a list of components to choose from:
52+
53+
```txt
54+
Which components would you like to add? › Space to select. A to toggle all.
55+
Enter to submit.
56+
57+
◯ address
58+
◯ balance
59+
◯ block-explorer-link
60+
◯ block-number
61+
◯ nonce
62+
◯ transaction
63+
◯ transaction-status
64+
◯ fee-data
65+
◯ sign-message-button
66+
◯ blockie
67+
```
68+
69+
### Options
70+
71+
```txt
72+
Usage: buidl-cli add [options] [components...]
73+
74+
add a component to your project
75+
76+
Arguments:
77+
components the components to add
78+
79+
Options:
80+
-y, --yes skip confirmation prompt. (default: false)
81+
-o, --overwrite overwrite existing files. (default: false)
82+
-c, --cwd <cwd> the working directory. defaults to the current directory.
83+
-p, --path <path> the path to add the component to.
84+
-h, --help display help for command
85+
```
86+
87+
## diff (experimental)
88+
89+
You can use the diff command to check for updates against the registry.
90+
91+
Run the following command to get a list of components that have updates available:
92+
93+
```bash
94+
npx buidl-cli diff
95+
```
96+
97+
```txt
98+
The following components have updates available:
99+
- address
100+
- /path/to/my-app/components/buidl/address.tsx
101+
- balance
102+
- /path/to/my-app/components/buidl/balance.tsx
103+
- transaction
104+
- /path/to/my-app/components/buidl/transaction.tsx
105+
```
106+
107+
Then run `diff [component]` to see the changes:
108+
109+
```bash
110+
npx buidl-cli diff alert
111+
```
112+
113+
```diff /pl-12/
114+
const alertVariants = cva(
115+
- "relative w-full rounded-lg border",
116+
+ "relative w-full pl-12 rounded-lg border"
117+
)
118+
```
119+
120+
### Options
121+
122+
```txt
123+
Usage: buidl-cli diff [options] [component]
124+
125+
check for updates against the registry
126+
127+
Arguments:
128+
component the component name
129+
130+
Options:
131+
-y, --yes skip confirmation prompt. (default: false)
132+
-c, --cwd <cwd> the working directory. defaults to the current directory.
133+
-h, --help display help for command
134+
```

apps/www/content/docs/components-json.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ We use it to understand how your project is set up and how to generate component
1616
You can create a `components.json` file in your project by running the following command:
1717

1818
```bash
19-
npx shadcn-ui@latest init
19+
npx buidl-cli@latest init
2020
```
2121

2222
See the <Link href="/docs/cli">CLI section</Link> for more information.
@@ -37,7 +37,7 @@ The style for your components. **This cannot be changed after initialization.**
3737

3838
```json title="components.json"
3939
{
40-
"style": "default" | "new-york"
40+
"style": "default"
4141
}
4242
```
4343

apps/www/content/docs/components/address.mdx

+5-9
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,18 @@ wagmi:
1313

1414
## Installation
1515

16-
<Tabs defaultValue="manual">
16+
<Tabs defaultValue="cli">
1717

1818
<TabsList>
19+
<TabsTrigger value="cli">CLI</TabsTrigger>
1920
<TabsTrigger value="manual">Manual</TabsTrigger>
20-
<TabsTrigger disabled={true} value="cli">
21-
CLI (Coming Soon)
22-
</TabsTrigger>
2321
</TabsList>
2422

2523
<TabsContent value="cli">
2624

27-
<Steps>
28-
29-
<Step>Coming soon...</Step>
30-
31-
</Steps>
25+
```bash
26+
npx buidl-cli@latest add address
27+
```
3228

3329
</TabsContent>
3430

apps/www/content/docs/components/balance.mdx

+5-9
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,18 @@ wagmi:
1313

1414
## Installation
1515

16-
<Tabs defaultValue="manual">
16+
<Tabs defaultValue="cli">
1717

1818
<TabsList>
19+
<TabsTrigger value="cli">CLI</TabsTrigger>
1920
<TabsTrigger value="manual">Manual</TabsTrigger>
20-
<TabsTrigger disabled={true} value="cli">
21-
CLI (Coming Soon)
22-
</TabsTrigger>
2321
</TabsList>
2422

2523
<TabsContent value="cli">
2624

27-
<Steps>
28-
29-
<Step>Coming soon...</Step>
30-
31-
</Steps>
25+
```bash
26+
npx buidl-cli@latest add balance
27+
```
3228

3329
</TabsContent>
3430

apps/www/content/docs/components/block-explorer-link.mdx

+5-9
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,18 @@ wagmi:
1313

1414
## Installation
1515

16-
<Tabs defaultValue="manual">
16+
<Tabs defaultValue="cli">
1717

1818
<TabsList>
19+
<TabsTrigger value="cli">CLI</TabsTrigger>
1920
<TabsTrigger value="manual">Manual</TabsTrigger>
20-
<TabsTrigger disabled={true} value="cli">
21-
CLI (Coming Soon)
22-
</TabsTrigger>
2321
</TabsList>
2422

2523
<TabsContent value="cli">
2624

27-
<Steps>
28-
29-
<Step>Coming soon...</Step>
30-
31-
</Steps>
25+
```bash
26+
npx buidl-cli@latest add block-explorer-link
27+
```
3228

3329
</TabsContent>
3430

apps/www/content/docs/components/block-number.mdx

+5-9
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,18 @@ wagmi:
1313

1414
## Installation
1515

16-
<Tabs defaultValue="manual">
16+
<Tabs defaultValue="cli">
1717

1818
<TabsList>
19+
<TabsTrigger value="cli">CLI</TabsTrigger>
1920
<TabsTrigger value="manual">Manual</TabsTrigger>
20-
<TabsTrigger disabled={true} value="cli">
21-
CLI (Coming Soon)
22-
</TabsTrigger>
2321
</TabsList>
2422

2523
<TabsContent value="cli">
2624

27-
<Steps>
28-
29-
<Step>Coming soon...</Step>
30-
31-
</Steps>
25+
```bash
26+
npx buidl-cli@latest add block-number
27+
```
3228

3329
</TabsContent>
3430

apps/www/content/docs/components/blockie.mdx

+5-9
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,18 @@ wagmi:
1313

1414
## Installation
1515

16-
<Tabs defaultValue="manual">
16+
<Tabs defaultValue="cli">
1717

1818
<TabsList>
19+
<TabsTrigger value="cli">CLI</TabsTrigger>
1920
<TabsTrigger value="manual">Manual</TabsTrigger>
20-
<TabsTrigger disabled={true} value="cli">
21-
CLI (Coming Soon)
22-
</TabsTrigger>
2321
</TabsList>
2422

2523
<TabsContent value="cli">
2624

27-
<Steps>
28-
29-
<Step>Coming soon...</Step>
30-
31-
</Steps>
25+
```bash
26+
npx buidl-cli@latest add blockie
27+
```
3228

3329
</TabsContent>
3430

0 commit comments

Comments
 (0)