create-lve 0.6.31 → 0.6.33
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
|
@@ -3,16 +3,16 @@
|
|
|
3
3
|
THE ULTRA-FAST FRONTEND STACK
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
|
|
6
|
+
pnpm create-lve
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
## Options
|
|
10
10
|
|
|
11
|
-
| Template | Description
|
|
12
|
-
|
|
|
11
|
+
| Template | Description |
|
|
12
|
+
| -------- | ------------------------ |
|
|
13
13
|
| React 19 | react-router + vite-plus |
|
|
14
14
|
| React 19 | TanStack Router + Vite 8 |
|
|
15
|
-
| Vue 3
|
|
15
|
+
| Vue 3 | vue-router + vite-plus |
|
|
16
16
|
|
|
17
17
|
All templates ship with **Tailwind CSS v4** out of the box.
|
|
18
18
|
|
|
@@ -20,13 +20,13 @@ All templates ship with **Tailwind CSS v4** out of the box.
|
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
22
|
# Interactive mode
|
|
23
|
-
|
|
23
|
+
pnpm create-lve
|
|
24
24
|
|
|
25
25
|
# Default (React 19 + react-router + Tailwind)
|
|
26
|
-
|
|
26
|
+
pnpm create-lve my-app
|
|
27
27
|
|
|
28
28
|
# Skip all prompts
|
|
29
|
-
|
|
29
|
+
pnpm create-lve --default my-app
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
## What's Inside
|