@cosmicdrift/kumiko-dev-server 0.249.0 → 0.251.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.251.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.251.0",
|
|
63
|
+
"@cosmicdrift/kumiko-framework": "0.251.0",
|
|
64
|
+
"@cosmicdrift/kumiko-server-runtime": "0.251.0",
|
|
65
65
|
"ts-morph": "^28.0.0"
|
|
66
66
|
},
|
|
67
67
|
"publishConfig": {
|
|
@@ -864,8 +864,8 @@ export async function createKumikoServer(
|
|
|
864
864
|
context: stack.context,
|
|
865
865
|
redisUrl,
|
|
866
866
|
// Same dispatcher the request path writes through — without this,
|
|
867
|
-
// ctx.write/ctx.queryAs inside a dev-run job throw on their
|
|
868
|
-
// (kumiko-framework#2553).
|
|
867
|
+
// ctx.write/ctx.writeAs/ctx.queryAs inside a dev-run job throw on their
|
|
868
|
+
// first call (kumiko-framework#2553).
|
|
869
869
|
dispatcher: stack.dispatcher,
|
|
870
870
|
});
|
|
871
871
|
|