Benjamin Beret

Results 10 comments of Benjamin Beret

Likewise, other possible values are missing. See here : https://developer.mozilla.org/fr/docs/Web/CSS/justify-content Missing values : * `stretch` * `left` * `right` * `start` * `end` * `normal` * `safe` * `unsafe`

I believe I'm also having this issue on production builds created by `create-react-app`. This does not happen in development mode. I set up a small repro repo here: https://github.com/kouak/detect-gpu-repro This...

@drenmullafetahu That's the same stack trace I got with create-react-app v5 (which uses webpack 5). Solved it by moving to vite.

If I remember correctly, I just moved the project to [vite](https://vitejs.dev/) instead of CRA. I haven't had time to investigate further though.

I believe `uuid` and `@types/uuid` can be dropped. Only `v4` is used, and can be replaced by `randomUUID` from `node:crypto` : https://nodejs.org/docs/latest-v18.x/api/crypto.html#cryptorandomuuidoptions

I encountered the same issue with both node 22.18.0 and 24.5.0 while editing files with neovim (0.11) on linux. If I understand correctly, when writing a file, neovim creates a...

We encountered it in production code, and I worked my way to a minimal jsdom + vitest reproduction. Let me know if this reproduction is enough for you :)

BTW, I've implemented the tests using `` and the matching RR adapter on purpose to try and match the behavior we've encountered in the browser. As I said, this reproduction...

corepack replaces the package manager part of volta If all team members use volta and are fine with it, then this is redundant. This is beneficial to external contributors who...