From e9da7786d101ae2490544e513d0e1428591788d2 Mon Sep 17 00:00:00 2001 From: xxnuo <54252779+xxnuo@users.noreply.github.com> Date: Thu, 1 Jan 2026 17:15:24 +0800 Subject: [PATCH] Update build.ts --- scripts/build.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/build.ts b/scripts/build.ts index 1a61dd7..09ca14a 100644 --- a/scripts/build.ts +++ b/scripts/build.ts @@ -4,9 +4,8 @@ import pkg from "../package.json"; const version = pkg.version; const args = new Set(Bun.argv.slice(2)); -const isDocker = args.has("--docker"); const isLib = args.has("--lib"); -const isNode = args.has("--node") || args.has("--dev") || isDocker; +const isNode = args.has("--node") || args.has("--dev"); const isSingle = args.has("--single"); const isAll = args.has("--all") || (!isLib && !isNode && !isSingle);