diff options
author | 2023-08-15 18:51:51 -0700 | |
---|---|---|
committer | 2023-08-21 17:49:58 -0700 | |
commit | 406a6b5718b29090f4c183ec488eb19e07355eca (patch) | |
tree | 736ecd80a9341afcb3933de27a556029fa3b4994 | |
parent | 4003856575ec566ffbf51221d7782e9bda379d1d (diff) | |
download | bun-json.tar.gz bun-json.tar.zst bun-json.zip |
Tweak helptextbun-json
-rw-r--r-- | src/cli.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli.zig b/src/cli.zig index 1a83f52a4..ab8f3bd3e 100644 --- a/src/cli.zig +++ b/src/cli.zig @@ -133,10 +133,10 @@ pub const Arguments = struct { pub const ParamType = clap.Param(clap.Help); const shared_public_params = [_]ParamType{ - clap.parseParam("-h, --help Display this help and exit.") catch unreachable, + clap.parseParam("-h, --help Display this help and exit") catch unreachable, clap.parseParam("-b, --bun Force a script or package to use Bun.js instead of Node.js (via symlinking node)") catch unreachable, clap.parseParam("--cwd <STR> Absolute path to resolve files & entry points from. This just changes the process' cwd.") catch unreachable, - clap.parseParam("-c, --config <PATH> Config file to load bun from (e.g. -c bun.json") catch unreachable, + clap.parseParam("-c, --config <PATH> Specify path to config file (e.g. -c bun.json)") catch unreachable, clap.parseParam("--extension-order <STR>... Defaults to: .tsx,.ts,.jsx,.js,.json ") catch unreachable, clap.parseParam("--jsx-factory <STR> Changes the function called when compiling JSX elements using the classic JSX runtime") catch unreachable, clap.parseParam("--jsx-fragment <STR> Changes the function called when compiling JSX fragments") catch unreachable, |