summaryrefslogtreecommitdiff
path: root/cli/graph_util.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-02-21 16:58:37 -0500
committerGitHub <noreply@github.com>2024-02-21 21:58:37 +0000
commit190776f30d8a3900c03e097ed4b9209db447301b (patch)
tree790620568533a508dd479944c6f03dacbe904908 /cli/graph_util.rs
parent76ebf567e25d0b7f3ed365dd2da336a9b5768fad (diff)
perf: linter lsp memory leak fix and deno_graph executor (#22519)
Updates dependent crates which includes an investigation fix by @irbull in Deno's LSP when linting code. Huge thanks to Ian for tracking down this issue. Also includes Divy's deno_graph executor change, which reduces memory usage when loading jsr specifiers and makes them faster. Co-authored-by: irbull <irbull@users.noreply.github.com> Co-authored-by: littledivy <littledivy@users.noreply.github.com>
Diffstat (limited to 'cli/graph_util.rs')
-rw-r--r--cli/graph_util.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/graph_util.rs b/cli/graph_util.rs
index 51f07af5e..facff0af5 100644
--- a/cli/graph_util.rs
+++ b/cli/graph_util.rs
@@ -463,6 +463,7 @@ impl ModuleGraphBuilder {
deno_graph::BuildOptions {
is_dynamic: options.is_dynamic,
jsr_url_provider: Some(&CliJsrUrlProvider),
+ executor: Default::default(),
imports: maybe_imports,
resolver: Some(graph_resolver),
file_system: Some(&DenoGraphFsAdapter(self.fs.as_ref())),