jcaesar
jcaesar
Until there is a proper API for this, I found that ``` function mangle(bookmarks, se) { bookmarks.forEach(function(bookmark) { if (bookmark.type == 'bookmark' && bookmark.url.includes("%s")) { var shorty = new URL(bookmark.url).hostname.split('.').filter(function...
Duplicate of #204?
Actually, can I ask you to wait with merging this for a bit? It might be necessary to downgrade rust to 1.56 for the release build because of this [bug](https://github.com/wasmerio/webassembly.sh/issues/112).
There are of course official [docs](https://docs.wasmer.io/ecosystem/wapm/publishing-your-package#creating-an-account-in-wapm) for this. So far, I haven't bothered automating the process of publishing. My current MO is to fire my own [somewhat hacky build script](https://github.com/jcaesar/wapm-pkg/blob/04560c33e285bfd164f6e9306cffc8834e99525c/waskid.sh),...
I've tried that wapm-publish action, but I don't see the point of using it.
I'm curious, what version of emscripten did you use to build your binary? When I investigated [a while ago](https://github.com/wasmerio/wasmer/issues/2498#issuecomment-932257354), 1.38.43 was the last version that would work (but that's when...
Related but very old issue: https://github.com/wasmerio/wasmer/issues/577
It's not possible currently (see #568), but it might not be too difficult to realize. It's not terribly entangled.
Heh, I started trying this last week. About the imports: those are normally provided by JavaScript, and normally you'd have to make an [equivalent implementation](https://github.com/konsoletyper/teavm/blob/08aa642fe56a167c896759235b335d76cb291d3c/core/src/main/resources/org/teavm/backend/wasm/wasm-runtime.js#L48-L54) in your host system (Rust...
> did you try writing your logic in main method and calling it instead of running custom export? Ty, That works, even if I leave my logic as is and...