From 4d450e5be55932395574b9aa04dd55f95a120bab Mon Sep 17 00:00:00 2001 From: himanshu8443 Date: Sun, 13 Jul 2025 11:25:08 +0530 Subject: [PATCH] fix: disable variable name mangling in minification for better readability --- build-simple.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-simple.js b/build-simple.js index 27da153..516db96 100644 --- a/build-simple.js +++ b/build-simple.js @@ -119,9 +119,7 @@ class ProviderBuilder { "console.warn", ], }, - mangle: { - keep_fnames: false, // Mangle function names for better compression - }, + mangle: false, // Disable variable name mangling to keep original names format: { comments: false, // Remove comments },