search directory
Search Commands
Search tools, operations, flags, and command strings. Results are capped for Worker performance.
Bun Build Commands
12 bun-build entries
Limited to 100 results
bun-build Operations
Bun Build Command: Bundle Multiple Entry Points
bun build <path/to/entry1.ts path/to/entry2.ts ...> --outdir <path/to/dist> bun-build Operations
Bun Build Command: Bundle Multiple Entry Points To Output Directory
bun build <path/to/entry1.ts path/to/entry2.ts ...> --outdir <path/to/dist> bun-build Operations
Bun Build Command: Bundle Single Entry Point To Output File
bun build <path/to/entry.ts> --outfile <path/to/output.js> bun-build Operations
Bun Build Command: Bundle Single Output File
bun build <path/to/entry.ts> --outfile <path/to/output.js> bun-build Operations
Bun Build Command: Bundle To Standalone Executable
bun build <path/to/entry.ts> --compile --outfile <path/to/executable> bun-build Operations
Bun Build Command: Bundle With External Dependencies
bun build <path/to/entry.ts> --outfile <path/to/output.js> -e <react react-dom> bun-build Operations
Bun Build Command: Bundle With Minification
bun build <path/to/entry.ts> --outfile <path/to/output.js> --minify bun-build Operations
Bun Build Command: Bundle With Source Maps
bun build <path/to/entry.ts> --outfile <path/to/output.js> --sourcemap bun-build HTTP
Bun Build Command: Bundle With Specific Target Environment
bun build <path/to/entry.ts> --outfile <path/to/output.js> --target <browser|bun|node> bun-build HTTP
Bun Build Command: Bundle With Target Environment
bun build <path/to/entry.ts> --outfile <path/to/output.js> --target <browser|bun|node> bun-build Operations
Bun Build Command: Watch For File Changes
bun build <path/to/entry.ts> --outfile <path/to/output.js> --watch bun-build Operations
Bun Build Command: Watch For File Changes And Rebuild
bun build <path/to/entry.ts> --outfile <path/to/output.js> --watch