From 2a16ab52c03ebdb46e567f5d877b16509edffa97 Mon Sep 17 00:00:00 2001 From: MathMan05 Date: Mon, 11 Aug 2025 09:00:25 -0500 Subject: [PATCH] disable mangle as it breaks things --- build.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.ts b/build.ts index b4db2d5..7b80596 100644 --- a/build.ts +++ b/build.ts @@ -40,7 +40,7 @@ async function moveFiles(curPath: string, newPath: string, first = true) { isModule: true, jsc: { minify: { - mangle: !process.argv.includes("watch"), + mangle: false, }, }, }, @@ -48,7 +48,7 @@ async function moveFiles(curPath: string, newPath: string, first = true) { minify: !process.argv.includes("watch"), jsc: { minify: { - mangle: !process.argv.includes("watch"), + mangle: false, }, }, },