disable mangle as it breaks things

This commit is contained in:
MathMan05
2025-08-11 09:00:25 -05:00
parent cde04aa8a3
commit 2a16ab52c0
+2 -2
View File
@@ -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,
},
},
},