@cosmicdrift/kumiko-dev-server 0.181.0 → 0.182.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cosmicdrift/kumiko-dev-server",
3
- "version": "0.181.0",
3
+ "version": "0.182.1",
4
4
  "description": "Dev-tooling for Kumiko apps: local dev-server bootstrap (runDevApp), scaffolding, codegen. Not shipped into production node_modules — see @cosmicdrift/kumiko-server-runtime for the prod boot path.",
5
5
  "license": "BUSL-1.1",
6
6
  "author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
@@ -54,9 +54,9 @@
54
54
  "kumiko-schema-check": "./bin/kumiko-schema-check.ts"
55
55
  },
56
56
  "dependencies": {
57
- "@cosmicdrift/kumiko-bundled-features": "0.181.0",
58
- "@cosmicdrift/kumiko-framework": "0.181.0",
59
- "@cosmicdrift/kumiko-server-runtime": "0.181.0",
57
+ "@cosmicdrift/kumiko-bundled-features": "0.182.1",
58
+ "@cosmicdrift/kumiko-framework": "0.182.1",
59
+ "@cosmicdrift/kumiko-server-runtime": "0.182.1",
60
60
  "ts-morph": "^28.0.0"
61
61
  },
62
62
  "publishConfig": {
@@ -730,7 +730,11 @@ export async function createKumikoServer(
730
730
  const devJobRunners = await startDevJobRunners({
731
731
  registry: stack.registry,
732
732
  db: stack.db,
733
- context: { db: stack.db, registry: stack.registry },
733
+ // The stack's own AppContext, not a `{ db, registry }` literal: these
734
+ // runners consume the lanes, and a job reaching for ctx.files /
735
+ // ctx.notify / ctx.config would otherwise die here while the very same
736
+ // handler works on the request path (kumiko-framework#1232).
737
+ context: stack.context,
734
738
  redisUrl,
735
739
  });
736
740