[READ-ONLY] Mirror of https://github.com/bombshell-dev/tools. Internal CLI to standardize tooling across all Bombshell projects
0

Configure Feed

Select the types of activity you want to include in your feed.

[ci] format

authored by

Nate Moore and committed by
bombshell-bot
(Mar 17, 2026, 1:47 AM UTC) a9ffb867 c3f801bb

+17 -17
+17 -17
src/commands/build.ts
··· 4 4 import { local } from "../utils.ts"; 5 5 6 6 export async function build(ctx: CommandContext) { 7 - const args = parse(ctx.args, { 8 - boolean: ["bundle"], 9 - }); 7 + const args = parse(ctx.args, { 8 + boolean: ["bundle"], 9 + }); 10 10 11 - const tsdownArgs = [ 12 - "src/bin.ts", 13 - "--format", 14 - "esm", 15 - "--sourcemap", 16 - "--clean", 17 - "--no-config", 18 - ...args._.map((v) => v.toString()), 19 - ]; 20 - if (!args.bundle) tsdownArgs.push("--unbundle"); 11 + const tsdownArgs = [ 12 + "src/bin.ts", 13 + "--format", 14 + "esm", 15 + "--sourcemap", 16 + "--clean", 17 + "--no-config", 18 + ...args._.map((v) => v.toString()), 19 + ]; 20 + if (!args.bundle) tsdownArgs.push("--unbundle"); 21 21 22 - const stdio = x(local("tsdown"), tsdownArgs); 22 + const stdio = x(local("tsdown"), tsdownArgs); 23 23 24 - for await (const line of stdio) { 25 - console.log(line); 26 - } 24 + for await (const line of stdio) { 25 + console.log(line); 26 + } 27 27 }