mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
Switch bun -p from --port to --print (#16351)
This commit is contained in:
@@ -228,10 +228,10 @@ pub const Arguments = struct {
|
||||
clap.parseParam("--install <STR> Configure auto-install behavior. One of \"auto\" (default, auto-installs when no node_modules), \"fallback\" (missing packages only), \"force\" (always).") catch unreachable,
|
||||
clap.parseParam("-i Auto-install dependencies during execution. Equivalent to --install=fallback.") catch unreachable,
|
||||
clap.parseParam("-e, --eval <STR> Evaluate argument as a script") catch unreachable,
|
||||
clap.parseParam("--print <STR> Evaluate argument as a script and print the result") catch unreachable,
|
||||
clap.parseParam("-p, --print <STR> Evaluate argument as a script and print the result") catch unreachable,
|
||||
clap.parseParam("--prefer-offline Skip staleness checks for packages in the Bun runtime and resolve from disk") catch unreachable,
|
||||
clap.parseParam("--prefer-latest Use the latest matching versions of packages in the Bun runtime, always checking npm") catch unreachable,
|
||||
clap.parseParam("-p, --port <STR> Set the default port for Bun.serve") catch unreachable,
|
||||
clap.parseParam("--port <STR> Set the default port for Bun.serve") catch unreachable,
|
||||
clap.parseParam("-u, --origin <STR>") catch unreachable,
|
||||
clap.parseParam("--conditions <STR>... Pass custom conditions to resolve") catch unreachable,
|
||||
clap.parseParam("--fetch-preconnect <STR>... Preconnect to a URL while code is loading") catch unreachable,
|
||||
|
||||
Reference in New Issue
Block a user