You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, most of this complexity can be avoided by using --target web. Then it wouldn't need to do custom parsing, and it wouldn't need a custom init section either.
The text was updated successfully, but these errors were encountered:
This was first reported here: rustwasm/wasm-bindgen#2120
The problem is that wasm-bindgen changed its code generation, and since this plugin does custom parsing of the JS code, that is now broken.
In addition, wasm-bindgen now generates a
foo_bg.js
file (rather thanfoo.js
), so the file path needs to be updated as well.However, most of this complexity can be avoided by using
--target web
. Then it wouldn't need to do custom parsing, and it wouldn't need a custom init section either.The text was updated successfully, but these errors were encountered: