Skip to content

Commit

Permalink
Fix missing .wasm output for rust_wasm_bindgen
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkirsz committed Jan 4, 2024
1 parent 40232a0 commit 145262c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wasm_bindgen/private/wasm_bindgen.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def _rust_wasm_bindgen_impl(ctx):

return [
DefaultInfo(
files = depset(transitive = [info.js, info.ts]),
files = depset(transitive = [info.js, info.ts, depset([info.wasm])]),
),
info,
]
Expand Down

0 comments on commit 145262c

Please sign in to comment.