From 24e3e8887bc1758eb9fd7a917e0601de1436efd8 Mon Sep 17 00:00:00 2001 From: Kengo Watanabe <121782456+goisaki@users.noreply.github.com> Date: Thu, 20 Jun 2024 10:24:04 +0900 Subject: [PATCH] perf: use esbuild's `minify` option (#49) --- build.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/build.ts b/build.ts index 827103d..c367b9b 100644 --- a/build.ts +++ b/build.ts @@ -10,6 +10,7 @@ const b = () => platform: 'node', outfile: 'bin', format: 'cjs', + minify: true, }) Promise.all([b()])