Enduriel
Enduriel
I actually had the same issue, personally resolved it by doing ```bash wget --header="Content-Type: application/x-www-form-urlencoded" --post-data="json={"listen_port":{{PORTS}}}" -O- --retry-connrefused http://127.0.0.1:50003/api/v2/app/setPreferences 2>&1 ``` instead, for some reason it needed the Content-Type being...
Would be really nice to see get added, with `--no-pack` being a thing it's rather annoying to have a custom package.json to then have it get gitignored because of running...
Just ran into this issue as well, I'd be happy to have a complex workaround to do this manually, but right now I can't even find a way to convert...
Well, with enough digging, anything is possible. I was able to find a solution to this problem that works for me, by getting a JsValue, you can implement this function...
Yes this is an error when executing JS, still doesn't work when I change that line. It only occurs when using wasm bindgen serialization and specifically when preserving a JsValue,...
I'll try and take a look tomorrow. I don't have any experience with how tsify works under the hood or really serde wasm bindgen either but I'll try and take...
I took a look at the expansion of these macros. They are massive and seem very complicated so I'm not sure when/if I'll have time to properly understand what's going...
Thanks to @pveierland for pointing out to me that I can use `hashmap_as_object` in ```rs #[derive(serde::Serialize, serde::Deserialize, tsify::Tsify)] #[serde(rename_all = "camelCase")] #[tsify(into_wasm_abi, from_wasm_abi, hashmap_as_object)] pub struct Foo { #[serde(flatten)] bar:...
Just ran into the same issue, with all of `spec` being `pub(crate)` this seems to be unusable.
Thanks for digging into the `extended_filenames` issue @erusc, that's enough for me to debug by. I'll try and get this figured out by end of day tomorrow. @ncw thanks for...