terrablue

Results 69 comments of terrablue

@ryanking13 hi, I'm getting the same error when trying to use Bun. I saw that it has been generally resolved in https://github.com/pyodide/pyodide/issues/4915, thanks for that. I would like to suggest...

@hoodmane the `"browser"` target covers browsers; that's the [Svelte approach](https://github.com/sveltejs/svelte/blob/main/packages/svelte/package.json#L24-L25).

Yes, it affects the behaviour of bundlers. I mean, anything in `package.json` isn't relevant for a browser unless you use a bundler anyway. What's the rationale for prebundling here? It...

That's fair enough. FWIW, supporting a `"browser"` target might actually solve the problem described by this issue -- by properly loading the correct entrypoint of Pyodide for backend and frontend....

I understand. So in that case I can implement it myself for my use case. What about `to_h`? It's already used in this meaning in ruby, no?

I can confirm this doesn't work with Node.js 21 either. By the way, the fix to https://github.com/ruby/ruby.wasm/blob/main/packages/npm-packages/ruby-wasm-wasi/tools/run-test-unit.mjs#L30 (adding `{ version: "preview1" }`) can be done independently of that. Should I...

@kateinoigakukun is it possible to run at least *part* of the tests or isolate this problem down to a particular test? I would like to start contributing, but it's hard...

@henderea FWIW, here is how I would add Eta SSR support to my framework: ```js import { Eta } from "eta"; import { File } from "rcompat/fs"; const eta =...

@morandd Hi, this is possible for Eta (see https://github.com/eta-dev/eta/issues/268#issuecomment-2154672195), but EJS here produces the following code: ```js function anonymous(data) { var include = function (path, includeData) { var d =...

Hey, thanks. So far I've got this: https://github.com/terrablue/zua, which is working. But if possible, it would be nice to deduplicate work, and Ziglua is already doing some nice binding work....