From b509900e87484a8321f8e9b23853da0d50fce75a Mon Sep 17 00:00:00 2001 From: ryu <114303361+ryuapp@users.noreply.github.com> Date: Thu, 27 Jun 2024 22:55:00 +0900 Subject: [PATCH] fix: don't minify binary file --- build.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.ts b/build.ts index c367b9b..120ab2c 100644 --- a/build.ts +++ b/build.ts @@ -10,7 +10,8 @@ const b = () => platform: 'node', outfile: 'bin', format: 'cjs', - minify: true, + // For debug + minify: false, }) Promise.all([b()])