folder-generator 1.3.6 → 1.3.7

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 +7 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -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 © [Your Name]
138
+ MIT © Shreyash Ghanekar
133
139
 
134
140
  ## 🙏 Acknowledgments
135
141
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "folder-generator",
3
- "version": "1.3.6",
3
+ "version": "1.3.7",
4
4
  "description": "CLI tool to generate folder structures from text input",
5
5
  "bin": {
6
6
  "foldgen": "./bin/cli.js"