create-alistt69-kit 0.1.5 → 0.1.6
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 +7 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -65,7 +65,7 @@ npm create alistt69-kit@latest
|
|
|
65
65
|
Follow the prompts — or skip them entirely:
|
|
66
66
|
|
|
67
67
|
```bash
|
|
68
|
-
npm create alistt69-kit@latest my-app -- --defaults
|
|
68
|
+
npm create alistt69-kit@latest my-app -- -- --defaults
|
|
69
69
|
```
|
|
70
70
|
|
|
71
71
|
## 🛠️ Usage examples
|
|
@@ -75,22 +75,22 @@ npm create alistt69-kit@latest my-app -- --defaults
|
|
|
75
75
|
npm create alistt69-kit@latest my-app
|
|
76
76
|
|
|
77
77
|
# All defaults, no prompts
|
|
78
|
-
npm create alistt69-kit@latest my-app -- --defaults
|
|
78
|
+
npm create alistt69-kit@latest my-app -- -- --defaults
|
|
79
79
|
|
|
80
80
|
# Skip dependency installation
|
|
81
|
-
npm create alistt69-kit@latest my-app -- --no-install
|
|
81
|
+
npm create alistt69-kit@latest my-app -- -- --no-install
|
|
82
82
|
|
|
83
83
|
# Enable only selected features
|
|
84
|
-
npm create alistt69-kit@latest my-app -- --features=eslint,react-router
|
|
84
|
+
npm create alistt69-kit@latest my-app -- -- --features=eslint,react-router
|
|
85
85
|
|
|
86
86
|
# Enable all optional features
|
|
87
|
-
npm create alistt69-kit@latest my-app -- --features=all
|
|
87
|
+
npm create alistt69-kit@latest my-app -- -- --features=all
|
|
88
88
|
|
|
89
89
|
# Use pnpm as package manager
|
|
90
|
-
npm create alistt69-kit@latest my-app -- --pm pnpm
|
|
90
|
+
npm create alistt69-kit@latest my-app -- -- --pm pnpm
|
|
91
91
|
|
|
92
92
|
# Overwrite existing directory
|
|
93
|
-
npm create alistt69-kit@latest my-app -- --defaults --overwrite
|
|
93
|
+
npm create alistt69-kit@latest my-app -- -- --defaults --overwrite
|
|
94
94
|
```
|
|
95
95
|
|
|
96
96
|
## ⚙️ CLI options
|