Sven

Results 22 comments of Sven

The use case is that we have a library that includes both a re-usable baseline for our microfrontend (browser) as well as some configuration builders used in the microfrontend build...

Node.js can actually handle ES modules but it thinks `build/esm/noop.js` (loaded via `import("@tanstack/react-query-devtools")` or `import {} from "@tanstack/react-query-devtools"`) is a CJS module as the `package.json` does not include a `"type":...

It seems the change will break indentation of text nodes. Honestly I'm not sure we can actually change text indent in a safe way. I'd therefore suggest to not indent...

Just to keep you posted: I'll add the discussion with @marvinhagemeister on slack here publicly: Marvin mentioned the issue is that we are indenting after rendering instead of during rendering....

So from what I can see from debugging this, `h` is supposed to refer to a component instance where our diff invokes the `render` function but in this case refers...

hey @prisis I just tried to repro this again to debug a bit further but I'm not able to reproduce it anymore. Might you be able share reproduction steps with...

So I dug into this a bit and it seems prefresh does not correctly detect `Container` from https://github.com/vercel/next.js/blob/f06c58911515d980e25c33874c5f18ade5ac99df/packages/next/pages/_app.tsx#L81 as a functional component but rather treats it as a class based...

@developit the RegEx approach would suffer from the issue of transforming `tabIndex` to `tab-index` instead of `tabindex`. Combining both with a list of html attributes that need the hyphen to...

What is the intention of passing a function as a child? What happens here is that the function is serialized to a string and appended to the HTML. Istanbul modifies...