summaryrefslogtreecommitdiff
path: root/cli/args/flags.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-05-18 18:10:44 -0400
committerGitHub <noreply@github.com>2023-05-18 18:10:44 -0400
commit680ae31db8d39866275df81301d927deae187666 (patch)
tree9273dee216fc39c8ef735c83890430b5a7548b2b /cli/args/flags.rs
parenta45f7f237be46ae20553d34441c61cb1d01398cb (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.rs2
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 {