diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2024-11-19 08:56:04 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-19 08:56:04 -0800 |
commit | 628816448ea45807762fd8eb0c59302c9f2aac9a (patch) | |
tree | 909d67aa20b063bf74b9f3e1d31129e6d04d3a4d /cli/standalone/binary.rs | |
parent | 186b52731c6bb326c4d32905c5e732d082e83465 (diff) |
refactor: update deno_doc, use prismjs, remove internal reference html generation logic (#26885)
Diffstat (limited to 'cli/standalone/binary.rs')
-rw-r--r-- | cli/standalone/binary.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/standalone/binary.rs b/cli/standalone/binary.rs index 37753bafc..d18d77564 100644 --- a/cli/standalone/binary.rs +++ b/cli/standalone/binary.rs @@ -651,6 +651,7 @@ impl<'a> DenoCompileBinaryWriter<'a> { deno_graph::Module::Npm(_) | deno_graph::Module::Node(_) | deno_graph::Module::External(_) => (None, MediaType::Unknown), + deno_graph::Module::Wasm(_) => todo!("@dsherret"), }; if module.specifier().scheme() == "file" { let file_path = deno_path_util::url_to_file_path(module.specifier())?; |