create-tauri-ui 0.1.4 → 0.1.5
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 +4 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -23,16 +23,17 @@ You can also directly specify the project name and the template you want to use
|
|
|
23
23
|
npm create tauri-ui@latest my-tauri-app -- --template vite
|
|
24
24
|
|
|
25
25
|
# yarn
|
|
26
|
-
yarn create tauri-ui my-tauri-app --template
|
|
26
|
+
yarn create tauri-ui my-tauri-app --template next
|
|
27
27
|
|
|
28
28
|
# pnpm
|
|
29
|
-
pnpm create tauri-ui my-tauri-app --template
|
|
29
|
+
pnpm create tauri-ui my-tauri-app --template sveltekit
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
Currently supported template presets include:
|
|
33
33
|
|
|
34
|
-
- `Vite`
|
|
34
|
+
- `Vite + React`
|
|
35
35
|
- `Next.js`
|
|
36
|
+
- `SvelteKit`
|
|
36
37
|
|
|
37
38
|
You can use `.` for the project name to scaffold in the current directory.
|
|
38
39
|
|
package/package.json
CHANGED