Skip to content

Commit

Permalink
feat: Wasm support (#653)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret authored Nov 18, 2024
1 parent ce59a22 commit 7022bf4
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
18 changes: 14 additions & 4 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository = "https://github.com/denoland/deno_doc"
members = ["lib"]

[workspace.dependencies]
deno_graph = { version = "0.84.0", default-features = false, features = ["symbols"] }
deno_graph = { version = "0.85.0", default-features = false, features = ["symbols"] }
deno_ast = { version = "0.43.0" }
import_map = "0.20.0"
serde = { version = "1.0.204", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ impl<'a> DocParser<'a> {
let module = resolve_deno_graph_module(self.graph, specifier)?;

match module {
Module::Js(_) | Module::Json(_) => {
Module::Js(_) | Module::Json(_) | Module::Wasm(_) => {
let module_info = self.get_module_info(module.specifier())?;
let module_doc_nodes =
self.get_doc_nodes_for_module_info(module_info)?;
Expand Down

0 comments on commit 7022bf4

Please sign in to comment.