diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-05-18 18:10:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-18 18:10:44 -0400 |
commit | 680ae31db8d39866275df81301d927deae187666 (patch) | |
tree | 9273dee216fc39c8ef735c83890430b5a7548b2b /cli/args/flags.rs | |
parent | a45f7f237be46ae20553d34441c61cb1d01398cb (diff) |
feat(cli): add `nodeModulesDir` option to config file (#19095)
This adds an option to disable or enable using a local `node_modules`
directory as a project wide setting.
https://github.com/denoland/manual/pull/659
Closes #17930
Diffstat (limited to 'cli/args/flags.rs')
-rw-r--r-- | cli/args/flags.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/args/flags.rs b/cli/args/flags.rs index fa28241a3..63ec2b947 100644 --- a/cli/args/flags.rs +++ b/cli/args/flags.rs @@ -2431,7 +2431,7 @@ fn local_npm_arg() -> Arg { .value_parser(value_parser!(bool)) .default_missing_value("true") .require_equals(true) - .help("Creates a local node_modules folder") + .help("Enables or disables the use of a local node_modules folder for npm packages") } fn unsafely_ignore_certificate_errors_arg() -> Arg { |