diff options
Diffstat (limited to 'cli/args/flags.rs')
-rw-r--r-- | cli/args/flags.rs | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/cli/args/flags.rs b/cli/args/flags.rs index f76d0ca4e..9384dacf8 100644 --- a/cli/args/flags.rs +++ b/cli/args/flags.rs @@ -932,9 +932,8 @@ static ENV_VARIABLES_HELP: &str = color_print::cstr!( private repositories (e.g. "abcde12345@deno.land;54321edcba@github.com") - <g>DENO_TLS_CA_STORE</> Comma-separated list of order dependent certificate - stores. Possible values: "system", "mozilla". - Defaults to "mozilla". + <g>DENO_FUTURE</> Set to "1" to enable APIs that will take effect in + Deno 2 <g>DENO_CERT</> Load certificate authority from PEM encoded file @@ -943,6 +942,10 @@ static ENV_VARIABLES_HELP: &str = color_print::cstr!( <g>DENO_INSTALL_ROOT</> Set deno install's output directory (defaults to $HOME/.deno/bin) + <g>DENO_JOBS</> Number of parallel workers used for the --parallel + flag with the test subcommand. Defaults to number + of available CPUs. + <g>DENO_REPL_HISTORY</> Set REPL history file path History file is disabled when the value is empty (defaults to $DENO_DIR/deno_history.txt) @@ -955,26 +958,26 @@ static ENV_VARIABLES_HELP: &str = color_print::cstr!( <g>DENO_NO_UPDATE_CHECK</> Set to disable checking if a newer Deno version is available + <g>DENO_TLS_CA_STORE</> Comma-separated list of order dependent certificate + stores. Possible values: "system", "mozilla". + Defaults to "mozilla". + <g>DENO_V8_FLAGS</> Set V8 command line options <g>DENO_WEBGPU_TRACE</> Directory to use for wgpu traces - <g>DENO_JOBS</> Number of parallel workers used for the --parallel - flag with the test subcommand. Defaults to number - of available CPUs. - <g>HTTP_PROXY</> Proxy address for HTTP requests (module downloads, fetch) <g>HTTPS_PROXY</> Proxy address for HTTPS requests (module downloads, fetch) - <g>NPM_CONFIG_REGISTRY</> URL to use for the npm registry. - <g>NO_COLOR</> Set to disable color <g>NO_PROXY</> Comma-separated list of hosts which do not use a proxy - (module downloads, fetch)"# + (module downloads, fetch) + + <g>NPM_CONFIG_REGISTRY</> URL to use for the npm registry."# ); static DENO_HELP: &str = concat!( |