Skip to content

Commit

Permalink
chore: update deno_doc (#23621)
Browse files Browse the repository at this point in the history
  • Loading branch information
crowlKats committed May 1, 2024
1 parent 641356b commit 544d248
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 67,7 @@ deno_ast = { workspace = true, features = ["bundler", "cjs", "codegen", "proposa
deno_cache_dir = { workspace = true }
deno_config = "=0.16.3"
deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] }
deno_doc = { version = "=0.128.1", features = ["html", "syntect"] }
deno_doc = { version = "=0.129.0", features = ["html", "syntect"] }
deno_emit = "=0.40.2"
deno_graph = { version = "=0.74.3", features = ["tokio_executor"] }
deno_lint = { version = "=0.58.4", features = ["docs"] }
Expand Down
5 changes: 2 additions & 3 deletions cli/tools/doc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 169,7 @@ pub async fn doc(flags: Flags, doc_flags: DocFlags) -> Result<(), AnyError> {
));

deno_doc::html::compute_namespaced_symbols(
deno_ns
&deno_ns
.into_iter()
.map(|node| deno_doc::html::DocNodeWithContext {
origin: short_path.clone(),
Expand All @@ -179,8 179,7 @@ pub async fn doc(flags: Flags, doc_flags: DocFlags) -> Result<(), AnyError> {
inner: std::sync::Arc::new(node),
drilldown_parent_kind: None,
})
.collect(),
&[],
.collect::<Vec<_>>(),
)
} else {
Default::default()
Expand Down

0 comments on commit 544d248

Please sign in to comment.