create-gametau 0.4.0 → 0.5.0-alpha.2
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
|
|
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
|
@@ -11,12 +11,12 @@
|
|
|
11
11
|
"preview": "vite preview"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"webtau": "^0.
|
|
14
|
+
"webtau": "^0.5.0-alpha.2"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"typescript": "^5.8.0",
|
|
18
18
|
"vite": "^6.0.0",
|
|
19
|
-
"webtau-vite": "^0.
|
|
19
|
+
"webtau-vite": "^0.5.0-alpha.2",
|
|
20
20
|
"@tauri-apps/cli": "^2.0.0",
|
|
21
21
|
"@tauri-apps/api": "^2.0.0"
|
|
22
22
|
}
|