diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-11-16 17:29:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-16 17:29:35 -0500 |
commit | ceca097e6f2215fce29f2e6aaca7702fa0a99404 (patch) | |
tree | d57c2ea1c9048a3aaa01e9cc787fc0fbfd242cb3 /cli/tools/run/mod.rs | |
parent | b572abfcb3fadbfdd3ce671a27463d67bcb77534 (diff) |
fix(npm): support cjs entrypoint in node_modules folder (#21224)
Closes #21109
Diffstat (limited to 'cli/tools/run/mod.rs')
-rw-r--r-- | cli/tools/run/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tools/run/mod.rs b/cli/tools/run/mod.rs index 119129b1b..21e1f7b5e 100644 --- a/cli/tools/run/mod.rs +++ b/cli/tools/run/mod.rs @@ -45,8 +45,8 @@ To grant permissions, set them before the script argument. For example: let http_client = factory.http_client(); let cli_options = factory.cli_options(); - // Run a background task that checks for available upgrades. If an earlier - // run of this background task found a new version of Deno. + // Run a background task that checks for available upgrades or output + // if an earlier run of this background task found a new version of Deno. super::upgrade::check_for_upgrades( http_client.clone(), deno_dir.upgrade_check_file_path(), |