[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, 2:07 AM UTC) fa54e9fe a9d22160

+12 -12
+12 -12
src/commands/build.ts
··· 3 3 import type { CommandContext } from "../context.ts"; 4 4 5 5 export async function build(ctx: CommandContext) { 6 - const args = parse(ctx.args, { 7 - boolean: ["bundle"], 8 - }); 6 + const args = parse(ctx.args, { 7 + boolean: ["bundle"], 8 + }); 9 9 10 - const entry = args._.length > 0 ? args._.map(String) : ["src/**/*.ts"]; 10 + const entry = args._.length > 0 ? args._.map(String) : ["src/**/*.ts"]; 11 11 12 - await tsdown({ 13 - config: false, 14 - entry, 15 - format: "esm", 16 - sourcemap: true, 17 - clean: true, 18 - unbundle: !args.bundle, 19 - }); 12 + await tsdown({ 13 + config: false, 14 + entry, 15 + format: "esm", 16 + sourcemap: true, 17 + clean: true, 18 + unbundle: !args.bundle, 19 + }); 20 20 }