diff options
author | Nick Hanley <nicholasjhanley@gmail.com> | 2023-03-16 12:22:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-17 01:22:24 +0900 |
commit | 1a3c2e2f1dc5add94b5b7ff4ba4c26df55c7a011 (patch) | |
tree | f300370c4d96ccfce91d850f2451339e3c464152 /cli/args/flags.rs | |
parent | b25876355888158167ebdefe50c0a88a2d33a38f (diff) |
feat(repl): add `DENO_REPL_HISTORY` to change history file path (#18047)
Diffstat (limited to 'cli/args/flags.rs')
-rw-r--r-- | cli/args/flags.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/args/flags.rs b/cli/args/flags.rs index 883a4d034..c1e422da3 100644 --- a/cli/args/flags.rs +++ b/cli/args/flags.rs @@ -593,6 +593,9 @@ static ENV_VARIABLES_HELP: &str = r#"ENVIRONMENT VARIABLES: DENO_DIR Set the cache directory DENO_INSTALL_ROOT Set deno install's output directory (defaults to $HOME/.deno/bin) + DENO_REPL_HISTORY Set REPL history file path + History file is disabled when the value is empty + (defaults to $DENO_DIR/deno_history.txt) DENO_NO_PACKAGE_JSON Disables auto-resolution of package.json DENO_NO_PROMPT Set to disable permission prompts on access (alternative to passing --no-prompt on invocation) |