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.
Files changed (2) hide show
  1. package/README.md +4 -3
  2. 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 vite
26
+ yarn create tauri-ui my-tauri-app --template next
27
27
 
28
28
  # pnpm
29
- pnpm create tauri-ui my-tauri-app --template vite
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-tauri-ui",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Create modern Tauri desktop apps with ease using shadcn/ui, Next.js & Vite in just a few simple steps.",
5
5
  "main": "index.js",
6
6
  "author": "agmmnn",