feat(foundry): productionize Cesium Map Page and platform runtime

This commit is contained in:
Codex
2026-07-16 02:25:58 +03:00
parent 1a2ca8c82c
commit 5e8c1cc3fc
41 changed files with 6977 additions and 179 deletions
+9
View File
@@ -0,0 +1,9 @@
import { spawn } from "node:child_process";
await import("./runtime-seed.mjs");
const [command, ...args] = process.argv.slice(2);
if (!command) throw new Error("foundry_runtime_command_required");
const child = spawn(command, args, { stdio: "inherit" });
child.on("exit", (code, signal) => process.exitCode = code ?? (signal ? 1 : 0));
child.on("error", (error) => { throw error; });