summaryrefslogtreecommitdiff
path: root/cli
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
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')
-rw-r--r--cli/Cargo.toml12
-rw-r--r--cli/graph_util.rs1
2 files changed, 7 insertions, 6 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 67795b3c2..059b9c446 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -66,17 +66,17 @@ deno_ast = { workspace = true, features = ["bundler", "cjs", "codegen", "proposa
deno_cache_dir = { workspace = true }
deno_config = "=0.10.0"
deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] }
-deno_doc = { version = "=0.110.0", features = ["html"] }
-deno_emit = "=0.38.0"
-deno_graph = "=0.68.1"
-deno_lint = { version = "=0.57.0", features = ["docs"] }
+deno_doc = { version = "=0.110.1", features = ["html"] }
+deno_emit = "=0.38.1"
+deno_graph = { version = "=0.69.0", features = ["tokio_executor"] }
+deno_lint = { version = "=0.57.1", features = ["docs"] }
deno_lockfile.workspace = true
deno_npm = "=0.17.0"
deno_runtime = { workspace = true, features = ["include_js_files_for_snapshotting"] }
deno_semver = "=0.5.4"
deno_task_shell = "=0.14.3"
deno_terminal.workspace = true
-eszip = "=0.64.0"
+eszip = "=0.64.1"
napi_sym.workspace = true
async-trait.workspace = true
@@ -98,7 +98,7 @@ dotenvy = "0.15.7"
dprint-plugin-json = "=0.19.1"
dprint-plugin-jupyter = "=0.1.2"
dprint-plugin-markdown = "=0.16.3"
-dprint-plugin-typescript = "=0.89.1"
+dprint-plugin-typescript = "=0.89.2"
env_logger = "=0.10.0"
fancy-regex = "=0.10.0"
# If you disable the default __vendored_zlib_ng feature above, you _must_ be able to link against `-lz`.
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())),