Marvin A. Ruder

Results 21 comments of Marvin A. Ruder

I have the same issue with Yarn 4 and Plug'n'Play – when using the `nodeLinker: node-modules` configuration, everything works fine. But this is no viable option in my project, so...

It would appear that at least for Yarn PnP a workaround is to add all peer dependencies of `@nivo/core` as its own dependencies in the `.yarnrc.yml` file: ```yaml packageExtensions: "@nivo/core@*":...

And since we are already talking about (peer) dependencies: Working with `@nivo/core` in Yarn PnP strict mode without declaring `prop-types` as a dependency of `@nivo/core` throws an error: ``` The...

> i am having this issue too. any time i hover over a chart now it breaks the page and throws this console error. i just upgraded to react 18....

> @marvinruder using `0.85.1` > > files attached [package-lock.json](https://github.com/plouc/nivo/files/14794656/package-lock.json) [package.json](https://github.com/plouc/nivo/files/14794657/package.json) Thanks! I see nothing wrong with the dependencies themselves, only one version of `react` (18.2.0) is pulled in. I quickly...

> Can someone explain what goes wrong in the plain bun image without Node? The process just seems to die, which sounds very much like a bun problem and not...

Appears to be fixed in Bun 1.0.30

Already tried `yarn unplug jimp`, has no effect, `type Jimp` is still resolved to `any`. In `tsconfig.json`, `"skipLibCheck": true` appears to be required, removing it throws 27 errors: `error TS2307:...

Let’s get this started then: https://github.com/vercel/hyper/pull/6987

Had the same problem, apparently it depends on the HTTP `Accept:` header. When opening a path like `/index.css` in my browser, the browser’s request contains the header ``` Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8...