fix(sdk): resolve packaged worker paths on Windows

This commit is contained in:
LukeParkerDev 2026-09-03 08:31:27 +10:00
parent 0485ddab37
commit c037fd65a5

View file

@ -164,12 +164,13 @@ export default {
Bun.write(
join(consumer, "boot.mjs"),
`import { Miniflare } from "miniflare"
import { fileURLToPath } from "node:url"
const miniflare = new Miniflare({
compatibilityDate: "2026-07-15",
compatibilityFlags: ["nodejs_compat"],
modules: true,
scriptPath: new URL("./dist/worker.js", import.meta.url).pathname,
scriptPath: fileURLToPath(new URL("./dist/worker.js", import.meta.url)),
durableObjects: { OPENCODE: { className: "OpenCodeDO", useSQLite: true } },
})