folder-generator 1.3.6 → 1.3.8
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 +9 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,12 +18,12 @@ A powerful CLI tool that generates complete folder structures from simple text d
|
|
|
18
18
|
|
|
19
19
|
### Global Installation (Recommended)
|
|
20
20
|
```bash
|
|
21
|
-
npm install -g folder-
|
|
21
|
+
npm install -g folder-generator
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
### Local Installation
|
|
25
25
|
```bash
|
|
26
|
-
npm install folder-
|
|
26
|
+
npm install folder-generator --save-dev
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
## 🚀 Usage
|
|
@@ -38,6 +38,11 @@ foldgen --input "src/
|
|
|
38
38
|
└── Header.js"
|
|
39
39
|
```
|
|
40
40
|
|
|
41
|
+
### Using npx
|
|
42
|
+
```bash
|
|
43
|
+
npx folder-generator --file structure.txt
|
|
44
|
+
```
|
|
45
|
+
|
|
41
46
|
### From File
|
|
42
47
|
```bash
|
|
43
48
|
foldgen --file structure.txt
|
|
@@ -50,6 +55,7 @@ echo "config/
|
|
|
50
55
|
└── production.json" | foldgen
|
|
51
56
|
```
|
|
52
57
|
|
|
58
|
+
|
|
53
59
|
### Specify Output Directory
|
|
54
60
|
```bash
|
|
55
61
|
foldgen --file structure.txt --output ./my-project
|
|
@@ -129,7 +135,7 @@ app/
|
|
|
129
135
|
|
|
130
136
|
## 📜 License
|
|
131
137
|
|
|
132
|
-
MIT ©
|
|
138
|
+
MIT © Shreyash Ghanekar
|
|
133
139
|
|
|
134
140
|
## 🙏 Acknowledgments
|
|
135
141
|
|