diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-04-17 02:58:48 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-17 02:58:48 +1000 |
commit | 534dd34f8662691c1e29cc1a6b84f18d311fe0c9 (patch) | |
tree | 8f6952331641d2f9681adc1143878dfe5b2209b7 /cli/args/flags.rs | |
parent | 1e26508579e1d102f462e58168398795270e7e61 (diff) |
fix: add `DENO_FUTURE` to `deno --help` (#23368)
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!( |