@cosmicdrift/kumiko-renderer-web 0.5.0 → 0.5.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/CHANGELOG.md +21 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @cosmicdrift/kumiko-renderer-web
|
|
2
2
|
|
|
3
|
+
## 0.5.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0e00015: fix(es-ops): path.resolve statt path.join für seedsDir → seed-files
|
|
8
|
+
|
|
9
|
+
Bun's `await import()` braucht absolute Pfade. Wenn der App-Author
|
|
10
|
+
`runProdApp({ seedsDir: "./seeds" })` setzt (relativ), würde
|
|
11
|
+
`path.join("./seeds", "foo.ts")` einen relativen Pfad liefern → Bun's
|
|
12
|
+
Import-Resolver such relativ zum `runner.ts`-Modul (nicht zum
|
|
13
|
+
`process.cwd()`) → `Cannot find module 'seeds/...' from '<runner-path>'`.
|
|
14
|
+
|
|
15
|
+
`path.resolve` löst gegen `process.cwd()` auf → absolute Pfade →
|
|
16
|
+
Import funktioniert. Aufgedeckt beim ersten Live-Boot der publicstatus-
|
|
17
|
+
Driver-Migration (Pod CrashLoopBackOff).
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [0e00015]
|
|
20
|
+
- @cosmicdrift/kumiko-dispatcher-live@0.5.1
|
|
21
|
+
- @cosmicdrift/kumiko-headless@0.5.1
|
|
22
|
+
- @cosmicdrift/kumiko-renderer@0.5.1
|
|
23
|
+
|
|
3
24
|
## 0.5.0
|
|
4
25
|
|
|
5
26
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-renderer-web",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Web-platform bindings for @cosmicdrift/kumiko-renderer. HTML default-primitives, browser history-based navigation, EventSource-backed live events, and a one-call createKumikoApp that mounts the whole stack via react-dom.",
|
|
5
5
|
"license": "BUSL-1.1",
|
|
6
6
|
"author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
|
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
"./styles.css": "./src/styles.css"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@cosmicdrift/kumiko-dispatcher-live": "0.5.
|
|
20
|
-
"@cosmicdrift/kumiko-headless": "0.5.
|
|
21
|
-
"@cosmicdrift/kumiko-renderer": "0.5.
|
|
19
|
+
"@cosmicdrift/kumiko-dispatcher-live": "0.5.1",
|
|
20
|
+
"@cosmicdrift/kumiko-headless": "0.5.1",
|
|
21
|
+
"@cosmicdrift/kumiko-renderer": "0.5.1",
|
|
22
22
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
23
23
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
24
24
|
"@radix-ui/react-label": "^2.1.8",
|