From 036e0303422e21ba1a83dda13b1f2b6f7ee7ba54 Mon Sep 17 00:00:00 2001 From: Lev Date: Tue, 10 Sep 2024 13:08:52 +0200 Subject: [PATCH] Add the missing 'linked' option to `--sourcemap` in `bun build --help` (#13855) --- src/cli.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli.zig b/src/cli.zig index a115c8d741b463..5ff74fb50ac6d6 100644 --- a/src/cli.zig +++ b/src/cli.zig @@ -242,7 +242,7 @@ pub const Arguments = struct { clap.parseParam("--target The intended execution environment for the bundle. \"browser\", \"bun\" or \"node\"") catch unreachable, clap.parseParam("--outdir Default to \"dist\" if multiple files") catch unreachable, clap.parseParam("--outfile Write to a file") catch unreachable, - clap.parseParam("--sourcemap ? Build with sourcemaps - 'inline', 'external', or 'none'") catch unreachable, + clap.parseParam("--sourcemap ? Build with sourcemaps - 'linked', 'inline', 'external', or 'none'") catch unreachable, clap.parseParam("--format Specifies the module format to build to. Only \"esm\" is supported.") catch unreachable, clap.parseParam("--root Root directory used for multiple entry points") catch unreachable, clap.parseParam("--splitting Enable code splitting") catch unreachable,