@cosmicdrift/kumiko-headless 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @cosmicdrift/kumiko-headless
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-framework@0.5.1
21
+
3
22
  ## 0.5.0
4
23
 
5
24
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cosmicdrift/kumiko-headless",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Headless UI logic for Kumiko — Dispatcher contract, Form-Controller, View-Model, Nav-Resolver. Plattform- und React-frei; jeder Renderer (renderer, renderer-web, renderer-native, …) komponiert darauf.",
5
5
  "license": "BUSL-1.1",
6
6
  "author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
@@ -28,7 +28,7 @@
28
28
  }
29
29
  },
30
30
  "dependencies": {
31
- "@cosmicdrift/kumiko-framework": "0.5.0",
31
+ "@cosmicdrift/kumiko-framework": "0.5.1",
32
32
  "zod": "^4.4.3"
33
33
  },
34
34
  "publishConfig": {