Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
small bug fix I missed before
  • Loading branch information
BaderBC committed Jul 11, 2024
commit ace51ffbb96f37d3c3b5408b14c9fd84f4ecefa8
2 changes: 1 addition & 1 deletion src/wasm-bindgen.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ async function run_wasm_bindgen(dir, wasm_path, out_dir, options) {
];

if (!options.experimental.transpileToJs) {
wasm_bindgen_args.concat(["--target", "web"]);
wasm_bindgen_args.push("--target", "web");
}

if (options.experimental.typescriptDeclarationDir == null) {
Expand Down