Jari Pennanen
Jari Pennanen
This should not be closed. The generated JS file is littered with `XMLHttpRequest` which should be replaced with `fetch`. E.g. Deno does not support `XMLHttpRequest` but it does `fetch`. https://github.com/denoland/deno/issues/2191
I got Deno working with simple sed tool: ``` sed -i 's|\(readAsync\s*=\s*(url,\s*onload,\s*onerror)\s*=>\s*{\)|\1fetch(url).then(async response => { onload(await response.arrayBuffer());}).catch(onerror); return;|g' YOURFILE.js ``` I also tested patching this https://github.com/emscripten-core/emscripten/blob/c0f1058cc53736a078e1bfaa42f0f2b8beebbccb/src/web_or_worker_shell_read.js#L48-L68 With this: ```javascript readAsync...
I can't seem to run anvil at all under wsl. How did you get it working? However to me even Sway crashes occasionally under WSL when resizing (maximizing) the window...
In V2, the Ctrl+Backspace _doesn't work_, but CTRL+Delete works
Does anyone have a clue how to fix this? Would it be enough to try to unlink in a loop (waiting few seconds between tries)? The parcel's development server is...
My PR won't fix this though, it's my attempt that is just not working for some reason. I have pure repo example here: https://github.com/Ciantic/deno-pure-solid-start that has also issues... I get...
Basic solidStart works for me, in my attempt I get solidstart working *without* jsr packages. As soon as I add jsr packages it fails.
@birkskyum yes, try this https://github.com/Ciantic/deno-pure-solid-start/tree/main Then click the counter button. It will error only when clicking `use server` functions with jsr packages.
I've debugged it to somewhere in the `loadAndTransform` and `transformRequest` of vite, the call order is such. First it always calls `loadAndTransform` and from there it gets a lot of...
Good news everyone, I got `jsr:@db/sqlite` working just by using Deno's NPM compatibility mode, the `.npmrc` trick and using `@jsr/db__sqlite` import: https://github.com/Ciantic/deno-solid-test/ ⬆️ I've updated the above repository, and vite's...