diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-12-11 12:46:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-11 10:46:24 -0700 |
commit | a272bc1bd0793b2f522e4e611963231dc344531f (patch) | |
tree | 50445eb5d8ff83852a9f698f9ee475caa20ee8b4 | |
parent | 88566cee72b4762e0742fdde3f2c56b8a4d0bf03 (diff) |
fix: ignore more paths in dynamic arg module search (#21539)
Upgrades deno_doc for https://github.com/denoland/deno_graph/pull/344
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | cli/Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index ce79cb2cf..f2044731a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1291,9 +1291,9 @@ dependencies = [ [[package]] name = "deno_graph" -version = "0.62.1" +version = "0.62.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f56934a1e3c8c7c3a5834613734b1e34c480f14e6815d52eae22481bd406195" +checksum = "cde6dca752e0bdcf908082ff6852be911e72edf013c126fa2ce78e0420bc5838" dependencies = [ "anyhow", "async-trait", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 8d3b303f3..3371cbebe 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -62,7 +62,7 @@ deno_config = "=0.6.5" deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] } deno_doc = { version = "=0.75.1", features = ["html"] } deno_emit = "=0.32.0" -deno_graph = "=0.62.1" +deno_graph = "=0.62.2" deno_lint = { version = "=0.52.2", features = ["docs"] } deno_lockfile.workspace = true deno_npm = "0.15.3" |