From cb222e012796ca23f9903dccc49154b79c04f03f Mon Sep 17 00:00:00 2001 From: MathMan05 Date: Mon, 24 Nov 2025 10:35:35 -0600 Subject: [PATCH] correct source map again --- build.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.ts b/build.ts index 9c3eb68..00235a4 100644 --- a/build.ts +++ b/build.ts @@ -119,7 +119,7 @@ async function moveFiles(curPath: string, newPath: string, first = true) { await Promise.all([ fs.writeFile( newfileDir + ".js", - mod.code + "\n" + `//# sourceMappingURL= ${plainname}.js.map`, + mod.code + "\n" + `//# sourceMappingURL=${plainname}.js.map`, ), mod.map ? fs.writeFile(newfileDir + ".js.map", mod.map as string) : null, ]);