bejamas 0.0.0-canary.02ea75e
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +43 -0
- package/dist/generate-mdx-CR4bXlml.js +664 -0
- package/dist/generate-mdx-CR4bXlml.js.map +1 -0
- package/dist/get-config-CJUwQ2Xb.js +217 -0
- package/dist/get-config-CJUwQ2Xb.js.map +1 -0
- package/dist/index.js +716 -0
- package/dist/index.js.map +1 -0
- package/package.json +56 -0
package/README.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# bejamas
|
|
2
|
+
|
|
3
|
+
A CLI for adding components to your project.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
Use the `init` command to initialize dependencies for a new project.
|
|
8
|
+
|
|
9
|
+
The `init` command installs dependencies, adds the `cn` util, and configures CSS variables for the project.
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npx bejamas init
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## add
|
|
16
|
+
|
|
17
|
+
Use the `add` command to add components to your project.
|
|
18
|
+
|
|
19
|
+
The `add` command adds a component to your project and installs all required dependencies.
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npx bejamas add [component]
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### Example
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
npx shadcn add button
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
You can also run the command without any arguments to view a list of all available components:
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
npx shadcn add
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Documentation
|
|
38
|
+
|
|
39
|
+
Visit https://ui.bejamas.com/docs/cli to view the documentation.
|
|
40
|
+
|
|
41
|
+
## License
|
|
42
|
+
|
|
43
|
+
Licensed under the [MIT license](https://github.com/bejamas/ui/blob/main/LICENSE.md).
|