Adam Gregory
Adam Gregory
@igorbrasileiro I'm more or less out of ideas, except to say you that if you have an `npm:` import in the config module, maybe that's the problem. You could try...
@elliotnash Just to be clear, do you mean you're running drizzle-kit using Deno, and when it hits this JSR import it fails? If so, I guess it's a more general...
I originally noticed this with a complete table structure, including `thead` and `tbody`. I was also getting warnings about those elements needing a `table` parent (which they had).
I think I might be hitting the same problem when using prepared statements: ```ts await sql`PREPARE prep(integer) AS SELECT $1`; // This works await sql`EXECUTE prep(0)`; // This fails with...
This is still the case in 19.2.2
@marvinhagemeister excited to see you've switched the unit tests to Astral! Good to bring this PR back to life, and very much looking forward to Fresh 2.0! :smile:
I get a lot of type errors like `Property 'map' does not exist on type 'IterableIterator'` . Is that the same issue? Is it likely to be resolved soon, now...
OK, that's great news thanks!
I currently have to run my own script to build SBOM content for my Deno dependencies. I can trace imports from https://esm.sh back to an `npm` purl. I can trace...
As a workaround, I made an island component that only has a `useEffect` hook. It just emits a "partial-loaded" custom event, with the name of the partial as detail. It's...