marvinh.
Next.JS with Deno 2.0 has "hydration" error after creation.
I can't find an issue for that in our tracker. What are the steps to reproduce that error? I've created a new project with
deno run -A npm:create-next-app@latest
but I'm not getting that error11 replies
Is there a way to run a command from a package in a workspace?
No, there is no such feature in Deno at the moment. There is a related feature request here https://github.com/denoland/deno/issues/24991
2 replies
Error occurs when using React third-party component library
The error occurs when Preact and React are mixed together. JSX nodes need to go through Preact for Preact to render them. Make sure you're setting up the react to preact/compat aliasing properly. Here is an example of what it should look like:
https://github.com/denoland/fresh/issues/1491#issuecomment-1643407629
2 replies
Navigating back after interacting with a Partial
Thanks for reporting, this issue seems similar to this one https://github.com/denoland/fresh/issues/2559 . I haven't yet had time to look into that one yet
4 replies
Missing source code when debugging via "deno run --inspect"
Definitely a new bug. We fixed the older one and it sounds like something broke again. So far it seems like on the Chrome side, but needs further investigation. Opened https://github.com/denoland/deno/issues/26512 to keep track of it
2 replies
Vinxi project such as solid-start doesn't work with Deno 2.0
That sounds like a bug. Can you file an issue for that here https://github.com/denoland/deno/issues/new/choose ?
4 replies
authentication within @kubernetes/client-node is not working as expected
That sounds like a bug in Deno. We'd appreciate if you can file an issue for that https://github.com/denoland/deno/issues/new/choose
4 replies
assertThrows with async function
assertThrows()
is for synchronous code. I think assertReject()
(see https://jsr.io/@std/assert/doc/~/assertRejects) is what you're looking for.3 replies