diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-05-24 10:15:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-24 10:15:46 -0400 |
commit | b21004b1d16ad7b67c7b1cd235abf792bf9d9777 (patch) | |
tree | 2a89a04d2d87d8e30a34beb97cbccf320dbef0ac /cli/factory.rs | |
parent | 92a8d09e498712aec2ba0e54a1ad85194ebd83af (diff) |
fix: use hash of in-memory bytes only for code cache (#23966)
* https://github.com/denoland/deno_core/pull/752
* https://github.com/denoland/deno_core/pull/753
Did benchmarking on this and it's slightly faster (couple ms) or equal
to in performance as main.
Closes #23904
Diffstat (limited to 'cli/factory.rs')
-rw-r--r-- | cli/factory.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cli/factory.rs b/cli/factory.rs index 43486bca0..6cdbff9bb 100644 --- a/cli/factory.rs +++ b/cli/factory.rs @@ -798,7 +798,6 @@ impl CliFactory { }, self.emitter()?.clone(), self.main_module_graph_container().await?.clone(), - self.module_info_cache()?.clone(), self.module_load_preparer().await?.clone(), cli_node_resolver.clone(), NpmModuleLoader::new( |