@cosmicdrift/kumiko-dev-server 0.230.0 → 0.232.0
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.
|
|
3
|
+
"version": "0.232.0",
|
|
4
4
|
"description": "Dev-tooling for Kumiko apps: local dev-server bootstrap (runDevApp), scaffolding, codegen. Its compose-stacks/env-schema subpaths are consumed at prod boot too — see @cosmicdrift/kumiko-server-runtime for the prod runner itself.",
|
|
5
5
|
"license": "BUSL-1.1",
|
|
6
6
|
"author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
|
|
@@ -59,9 +59,9 @@
|
|
|
59
59
|
"kumiko-upgrade": "./bin/kumiko-upgrade.ts"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@cosmicdrift/kumiko-bundled-features": "0.
|
|
63
|
-
"@cosmicdrift/kumiko-framework": "0.
|
|
64
|
-
"@cosmicdrift/kumiko-server-runtime": "0.
|
|
62
|
+
"@cosmicdrift/kumiko-bundled-features": "0.232.0",
|
|
63
|
+
"@cosmicdrift/kumiko-framework": "0.232.0",
|
|
64
|
+
"@cosmicdrift/kumiko-server-runtime": "0.232.0",
|
|
65
65
|
"ts-morph": "^28.0.0"
|
|
66
66
|
},
|
|
67
67
|
"publishConfig": {
|
|
@@ -750,6 +750,10 @@ export async function createKumikoServer(
|
|
|
750
750
|
// handler works on the request path (kumiko-framework#1232).
|
|
751
751
|
context: stack.context,
|
|
752
752
|
redisUrl,
|
|
753
|
+
// Same dispatcher the request path writes through — without this,
|
|
754
|
+
// ctx.write/ctx.queryAs inside a dev-run job throw on their first call
|
|
755
|
+
// (kumiko-framework#2553).
|
|
756
|
+
dispatcher: stack.dispatcher,
|
|
753
757
|
});
|
|
754
758
|
|
|
755
759
|
// Dev user = TestUsers.admin. Demo features are openToAll but the
|