From fa54e9fe3fd5b91efc3c6ec99decf09bede21ffb Mon Sep 17 00:00:00 2001 From: Nate Moore Date: Tue, 17 Mar 2026 02:07:41 +0000 Subject: [PATCH] [ci] format --- src/commands/build.ts | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/commands/build.ts b/src/commands/build.ts index ed5b371..939ec68 100644 --- a/src/commands/build.ts +++ b/src/commands/build.ts @@ -3,18 +3,18 @@ import { build as tsdown } from "tsdown"; import type { CommandContext } from "../context.ts"; export async function build(ctx: CommandContext) { - const args = parse(ctx.args, { - boolean: ["bundle"], - }); + const args = parse(ctx.args, { + boolean: ["bundle"], + }); - const entry = args._.length > 0 ? args._.map(String) : ["src/**/*.ts"]; + const entry = args._.length > 0 ? args._.map(String) : ["src/**/*.ts"]; - await tsdown({ - config: false, - entry, - format: "esm", - sourcemap: true, - clean: true, - unbundle: !args.bundle, - }); + await tsdown({ + config: false, + entry, + format: "esm", + sourcemap: true, + clean: true, + unbundle: !args.bundle, + }); } -- 2.51.2