Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 3d3741b

Browse files
authoredMay 16, 2023
Fix nested module names on Windows (#580)
Miniflare extracts a relative module "name" from module paths. On Windows, this process lead to names with `\`s in them. This meant imports had to look like `import { ... } from "dir\\thing.js"` which isn't right. This change normalises all import names to contain forward slashes instead. Source mapping code is unaffected, as Node will automatically normalise `/` to `\`s on Windows.

File tree

4 files changed

+60
-2
lines changed

4 files changed

+60
-2
lines changed
 

‎packages/miniflare/src/plugins/core/modules.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,8 @@ export function convertModuleDefinition(
309309
def: ModuleDefinition
310310
): Worker_Module {
311311
// The runtime requires module identifiers to be relative paths
312-
const name = path.relative(modulesRoot, def.path);
312+
let name = path.relative(modulesRoot, def.path);
313+
if (path.sep === "\\") name = name.replaceAll("\\", "/");
313314
const contents = def.contents ?? readFileSync(def.path);
314315
switch (def.type) {
315316
case "ESModule":
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { reduceError } from "../reduce";
2+
3+
export function createErrorResponse() {
4+
const error = new TypeError("Dependency error");
5+
return Response.json(reduceError(error), {
6+
status: 500,
7+
headers: { "MF-Experimental-Error-Stack": "true" },
8+
});
9+
}

‎packages/miniflare/test/index.spec.ts

+24
Original file line numberDiff line numberDiff line change
@@ -270,3 +270,27 @@ test("Miniflare: `node:` and `cloudflare:` modules", async (t) => {
270270
const res = await mf.dispatchFetch("http://localhost");
271271
t.is(await res.text(), "dGVzdA==");
272272
});
273+
274+
test("Miniflare: modules in sub-directories", async (t) => {
275+
const mf = new Miniflare({
276+
modules: [
277+
{
278+
type: "ESModule",
279+
path: "index.js",
280+
contents: `import { b } from "./sub1/index.js"; export default { fetch() { return new Response(String(b + 3)); } }`,
281+
},
282+
{
283+
type: "ESModule",
284+
path: "sub1/index.js",
285+
contents: `import { c } from "./sub2/index.js"; export const b = c + 20;`,
286+
},
287+
{
288+
type: "ESModule",
289+
path: "sub1/sub2/index.js",
290+
contents: `export const c = 100;`,
291+
},
292+
],
293+
});
294+
const res = await mf.dispatchFetch("http://localhost");
295+
t.is(await res.text(), "123");
296+
});

‎packages/miniflare/test/plugins/core/errors/index.spec.ts

+25-1
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,25 @@ const FIXTURES_PATH = path.resolve(
1818
);
1919
const SERVICE_WORKER_ENTRY_PATH = path.join(FIXTURES_PATH, "service-worker.ts");
2020
const MODULES_ENTRY_PATH = path.join(FIXTURES_PATH, "modules.ts");
21+
const DEP_ENTRY_PATH = path.join(FIXTURES_PATH, "nested/dep.ts");
2122

2223
test("source maps workers", async (t) => {
2324
// Build fixtures
2425
const tmp = await useTmp(t);
2526
await esbuild.build({
26-
entryPoints: [SERVICE_WORKER_ENTRY_PATH, MODULES_ENTRY_PATH],
27+
entryPoints: [
28+
SERVICE_WORKER_ENTRY_PATH,
29+
MODULES_ENTRY_PATH,
30+
DEP_ENTRY_PATH,
31+
],
2732
format: "esm",
2833
bundle: true,
2934
sourcemap: true,
3035
outdir: tmp,
3136
});
3237
const serviceWorkerPath = path.join(tmp, "service-worker.js");
3338
const modulesPath = path.join(tmp, "modules.js");
39+
const depPath = path.join(tmp, "nested", "dep.js");
3440
const serviceWorkerContent = await fs.readFile(serviceWorkerPath, "utf8");
3541
const modulesContent = await fs.readFile(modulesPath, "utf8");
3642

@@ -96,6 +102,19 @@ test("source maps workers", async (t) => {
96102
modulesRoot: tmp,
97103
modules: [{ type: "ESModule", path: modulesPath }],
98104
},
105+
{
106+
name: "e",
107+
routes: ["*/e"],
108+
modules: [
109+
// Check importing module with source map (e.g. Wrangler no bundle with built dependencies)
110+
{
111+
type: "ESModule",
112+
path: modulesPath,
113+
contents: `import { createErrorResponse } from "./nested/dep.js"; export default { fetch: createErrorResponse };`,
114+
},
115+
{ type: "ESModule", path: depPath },
116+
],
117+
},
99118
],
100119
});
101120
error = await t.throwsAsync(mf.dispatchFetch("http://localhost"), {
@@ -118,4 +137,9 @@ test("source maps workers", async (t) => {
118137
message: "d",
119138
});
120139
t.regex(String(error?.stack), /modules\.ts:5:19/);
140+
error = await t.throwsAsync(mf.dispatchFetch("http://localhost/e"), {
141+
instanceOf: TypeError,
142+
message: "Dependency error",
143+
});
144+
t.regex(String(error?.stack), /nested\/dep\.ts:4:17/);
121145
});

0 commit comments

Comments
 (0)
This repository has been archived.