create-vite-react-cli 0.4.1 → 0.4.3
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 +20 -0
- package/dist/index.mjs +2597 -0
- package/index.js +3 -0
- package/package.json +52 -58
- package/templates/formatting/prettier/package.json +3 -3
- package/bundle.js +0 -2013
package/README.md
CHANGED
|
@@ -26,3 +26,23 @@ npx create-vite-react-cli@latest
|
|
|
26
26
|
npm install -g create-vite-react-cli
|
|
27
27
|
create-vite-react-cli my-app
|
|
28
28
|
```
|
|
29
|
+
|
|
30
|
+
## Command Line Options
|
|
31
|
+
|
|
32
|
+
### Arguments
|
|
33
|
+
|
|
34
|
+
- `[DIRECTORY]`: The name of the project directory (optional).
|
|
35
|
+
|
|
36
|
+
### Options
|
|
37
|
+
|
|
38
|
+
- `--force`: Overwrite target directory if it exists.
|
|
39
|
+
- `--help`: Display help message.
|
|
40
|
+
- `--version`: Display version number.
|
|
41
|
+
|
|
42
|
+
### Feature Flags
|
|
43
|
+
|
|
44
|
+
- `--default`: Use default configuration without additional features.
|
|
45
|
+
- `--ts`, `--typescript`: Add TypeScript support.
|
|
46
|
+
- `--eslint`: Add ESLint for code quality.
|
|
47
|
+
- `--prettier`: Add Prettier for code formatting.
|
|
48
|
+
<!-- test -->
|