@rajdeep0510/scaffold-cli 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/README.md +10 -29
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,49 +1,30 @@
1
- # lib_ui
1
+ # scaffold
2
2
 
3
3
  A CLI tool for creating versatile and modern UI components.
4
4
 
5
- ## Installation
5
+ ## Import components
6
6
 
7
7
  ```bash
8
- npm install -g lib_ui
8
+ npx @rajdeep0510/scaffold-cli add <component-name>
9
9
  ```
10
10
 
11
- ## Usage
11
+ - Paste the following command in the terminal and the name of the component to import it.
12
12
 
13
- ```bash
14
- lib_ui add <component-name>
15
- ```
16
-
17
- ### Examples
18
-
19
- ```bash
20
- lib_ui add Header
21
- lib_ui add Button
22
- lib_ui add Card
23
- ```
13
+ ## List
24
14
 
25
- ## Troubleshooting
26
-
27
- If you get a "command not found" error after installation, you may need to add npm's global bin directory to your PATH:
28
-
29
- ### For macOS/Linux:
30
15
  ```bash
31
- # Add this to your ~/.zshrc or ~/.bashrc
32
- export PATH="$(npm config get prefix)/bin:$PATH"
16
+ npx @rajdeep0510/scaffold-cli list
33
17
  ```
34
18
 
35
- ### For Windows:
36
- The npm global bin directory is usually already in your PATH. If not, you can find it by running:
37
- ```bash
38
- npm config get prefix
39
- ```
19
+ - To list all the avaliable components in the scaffold directory.
40
20
 
41
21
  ## Development
42
22
 
43
23
  To install locally for development:
24
+
44
25
  ```bash
45
26
  git clone <repository-url>
46
- cd lib_ui
27
+ cd scaffold
47
28
  npm install
48
29
  npm link
49
- ```
30
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rajdeep0510/scaffold-cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "This is a CLI app for a UI library which is used for creating versatile and modern UI components.",
5
5
  "main": "bin/index.js",
6
6
  "type": "module",