From 534dd34f8662691c1e29cc1a6b84f18d311fe0c9 Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Wed, 17 Apr 2024 02:58:48 +1000 Subject: fix: add `DENO_FUTURE` to `deno --help` (#23368) --- cli/args/flags.rs | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) (limited to 'cli') 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") - DENO_TLS_CA_STORE Comma-separated list of order dependent certificate - stores. Possible values: "system", "mozilla". - Defaults to "mozilla". + DENO_FUTURE Set to "1" to enable APIs that will take effect in + Deno 2 DENO_CERT Load certificate authority from PEM encoded file @@ -943,6 +942,10 @@ static ENV_VARIABLES_HELP: &str = color_print::cstr!( DENO_INSTALL_ROOT Set deno install's output directory (defaults to $HOME/.deno/bin) + DENO_JOBS Number of parallel workers used for the --parallel + flag with the test subcommand. Defaults to number + of available CPUs. + 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!( DENO_NO_UPDATE_CHECK Set to disable checking if a newer Deno version is available + DENO_TLS_CA_STORE Comma-separated list of order dependent certificate + stores. Possible values: "system", "mozilla". + Defaults to "mozilla". + DENO_V8_FLAGS Set V8 command line options DENO_WEBGPU_TRACE Directory to use for wgpu traces - DENO_JOBS Number of parallel workers used for the --parallel - flag with the test subcommand. Defaults to number - of available CPUs. - HTTP_PROXY Proxy address for HTTP requests (module downloads, fetch) HTTPS_PROXY Proxy address for HTTPS requests (module downloads, fetch) - NPM_CONFIG_REGISTRY URL to use for the npm registry. - NO_COLOR Set to disable color NO_PROXY Comma-separated list of hosts which do not use a proxy - (module downloads, fetch)"# + (module downloads, fetch) + + NPM_CONFIG_REGISTRY URL to use for the npm registry."# ); static DENO_HELP: &str = concat!( -- cgit v1.2.3