From 406a6b5718b29090f4c183ec488eb19e07355eca Mon Sep 17 00:00:00 2001 From: Colin McDonnell Date: Tue, 15 Aug 2023 18:51:51 -0700 Subject: Tweak helptext --- src/cli.zig | 4 ++-- 1 file 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 Absolute path to resolve files & entry points from. This just changes the process' cwd.") catch unreachable, - clap.parseParam("-c, --config Config file to load bun from (e.g. -c bun.json") catch unreachable, + clap.parseParam("-c, --config Specify path to config file (e.g. -c bun.json)") catch unreachable, clap.parseParam("--extension-order ... Defaults to: .tsx,.ts,.jsx,.js,.json ") catch unreachable, clap.parseParam("--jsx-factory Changes the function called when compiling JSX elements using the classic JSX runtime") catch unreachable, clap.parseParam("--jsx-fragment Changes the function called when compiling JSX fragments") catch unreachable, -- cgit v1.2.3