@cosmicdrift/kumiko-dev-server 0.91.0 → 0.93.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 +3 -3
- package/src/run-dev-app.ts +2 -0
- package/src/run-prod-app.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-dev-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.93.0",
|
|
4
4
|
"description": "Development server bootstrap for Kumiko apps. Bundles the client, mints dev-JWTs, injects the resolved AppSchema, and seeds an admin. Not for production.",
|
|
5
5
|
"license": "BUSL-1.1",
|
|
6
6
|
"author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
|
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
"kumiko-schema-check": "./bin/kumiko-schema-check.ts"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@cosmicdrift/kumiko-bundled-features": "0.
|
|
54
|
-
"@cosmicdrift/kumiko-framework": "0.
|
|
53
|
+
"@cosmicdrift/kumiko-bundled-features": "0.93.0",
|
|
54
|
+
"@cosmicdrift/kumiko-framework": "0.93.0",
|
|
55
55
|
"ts-morph": "^28.0.0"
|
|
56
56
|
},
|
|
57
57
|
"publishConfig": {
|
package/src/run-dev-app.ts
CHANGED
|
@@ -42,6 +42,7 @@ import {
|
|
|
42
42
|
validateBoot,
|
|
43
43
|
} from "@cosmicdrift/kumiko-framework/engine";
|
|
44
44
|
import type { TestStack } from "@cosmicdrift/kumiko-framework/stack";
|
|
45
|
+
import { warnIfNonUtcServerTimeZone } from "@cosmicdrift/kumiko-framework/time";
|
|
45
46
|
import { applyBootSeeds } from "./boot/apply-boot-seeds";
|
|
46
47
|
|
|
47
48
|
import { watchAndRegenerate } from "./codegen";
|
|
@@ -212,6 +213,7 @@ export async function runDevApp(options: RunDevAppOptions): Promise<KumikoServer
|
|
|
212
213
|
// CrashLoopBackOff sterben ließ (#359). Wirft synchron, bevor ein
|
|
213
214
|
// Socket oder Watcher (codegen-Write) aufgeht.
|
|
214
215
|
validateBoot(features);
|
|
216
|
+
warnIfNonUtcServerTimeZone();
|
|
215
217
|
validateAppCustomScreenWriteQns(process.cwd(), collectWriteHandlerQns(features));
|
|
216
218
|
|
|
217
219
|
// Codegen + File-Watcher — schreibt `<appRoot>/.kumiko/types.generated.d.ts`
|
package/src/run-prod-app.ts
CHANGED
|
@@ -94,6 +94,7 @@ import {
|
|
|
94
94
|
createEventDedup,
|
|
95
95
|
createIdempotencyGuard,
|
|
96
96
|
} from "@cosmicdrift/kumiko-framework/pipeline";
|
|
97
|
+
import { warnIfNonUtcServerTimeZone } from "@cosmicdrift/kumiko-framework/time";
|
|
97
98
|
import Redis from "ioredis";
|
|
98
99
|
import { applyBootSeeds } from "./boot/apply-boot-seeds";
|
|
99
100
|
import { ASSETS_DIR } from "./build-prod-bundle";
|
|
@@ -629,6 +630,7 @@ export async function runProdApp(options: RunProdAppOptions): Promise<ProdAppHan
|
|
|
629
630
|
});
|
|
630
631
|
|
|
631
632
|
validateBoot(features);
|
|
633
|
+
warnIfNonUtcServerTimeZone();
|
|
632
634
|
validateAppCustomScreenWriteQns(process.cwd(), collectWriteHandlerQns(features));
|
|
633
635
|
const registry = createRegistry(features);
|
|
634
636
|
|