create-gametau 0.4.0 → 0.5.0-alpha.1

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 CHANGED
@@ -1,6 +1,8 @@
1
1
  # create-gametau
2
2
 
3
- Scaffold a Rust game project that runs both as a native Tauri app and as a web build (WASM) from one codebase.
3
+ Scaffold a Rust game project for the stable Web (WASM) + Tauri desktop path from one codebase.
4
+
5
+ Electrobun is available as an experimental opt-in track and is documented separately: `docs/ELECTROBUN-EXPERIMENTAL.md`.
4
6
 
5
7
  ## Quick Start
6
8
 
@@ -14,6 +16,9 @@ bun run dev
14
16
  For a step-by-step scaffold-to-playable tutorial (browser and Tauri), see:
15
17
  [`docs/GETTING-STARTED.md`](../../docs/GETTING-STARTED.md)
16
18
 
19
+ For the experimental Electrobun trial flow, see:
20
+ [`docs/ELECTROBUN-EXPERIMENTAL.md`](../../docs/ELECTROBUN-EXPERIMENTAL.md)
21
+
17
22
  ## Templates
18
23
 
19
24
  - `three` (default) - Three.js rendering starter
@@ -35,7 +40,7 @@ bunx create-gametau my-game --template vanilla
35
40
 
36
41
  - `src-tauri/core` - pure Rust game logic
37
42
  - `src-tauri/commands` - shared command definitions for desktop + web
38
- - `src-tauri/app` - Tauri desktop shell
43
+ - `src-tauri/app` - Tauri desktop shell (stable default desktop runtime)
39
44
  - `src-tauri/wasm` - WASM entry crate
40
45
  - `src` - frontend app wired to `webtau` and `webtau-vite`
41
46
  - `src/services` - production-ready service seams for backend invoke calls, persistence/settings, mission session snapshots, and event-driven comms
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-gametau",
3
- "version": "0.4.0",
3
+ "version": "0.5.0-alpha.1",
4
4
  "description": "Scaffold a Tauri game that deploys to web + desktop",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -11,12 +11,12 @@
11
11
  "preview": "vite preview"
12
12
  },
13
13
  "dependencies": {
14
- "webtau": "^0.4.0"
14
+ "webtau": "^0.5.0-alpha.1"
15
15
  },
16
16
  "devDependencies": {
17
17
  "typescript": "^5.8.0",
18
18
  "vite": "^6.0.0",
19
- "webtau-vite": "^0.4.0",
19
+ "webtau-vite": "^0.5.0-alpha.1",
20
20
  "@tauri-apps/cli": "^2.0.0",
21
21
  "@tauri-apps/api": "^2.0.0"
22
22
  }
@@ -5,7 +5,7 @@ edition.workspace = true
5
5
 
6
6
  [dependencies]
7
7
  {{PROJECT_NAME}}-core = { path = "../core" }
8
- webtau = "0.4.0"
8
+ webtau = "0.5.0-alpha.1"
9
9
 
10
10
  [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
11
11
  tauri = { version = "2", features = [] }