From 9df8d9d83140beb24a53b0ac52b1eaf2ea34c095 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Mon, 17 Oct 2022 12:27:31 -0400 Subject: perf(npm): parallelize caching of npm specifier package infos (#16323) --- cli/npm/resolvers/common.rs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'cli/npm/resolvers/common.rs') diff --git a/cli/npm/resolvers/common.rs b/cli/npm/resolvers/common.rs index 7769d2322..b91deae9e 100644 --- a/cli/npm/resolvers/common.rs +++ b/cli/npm/resolvers/common.rs @@ -10,6 +10,7 @@ use deno_core::futures; use deno_core::futures::future::BoxFuture; use deno_core::url::Url; +use crate::npm::cache::should_sync_download; use crate::npm::resolution::NpmResolutionSnapshot; use crate::npm::NpmCache; use crate::npm::NpmPackageReq; @@ -79,12 +80,6 @@ pub async fn cache_packages( Ok(()) } -/// For some of the tests, we want downloading of packages -/// to be deterministic so that the output is always the same -pub fn should_sync_download() -> bool { - std::env::var("DENO_UNSTABLE_NPM_SYNC_DOWNLOAD") == Ok("1".to_string()) -} - pub fn ensure_registry_read_permission( registry_path: &Path, path: &Path, -- cgit v1.2.3