Luke Stevens

Results 17 comments of Luke Stevens

I'm not sure it's entirely a polyfill issue. I'm getting the `Can't resolve 'fs'` due to Handlebars, which (IIRC) should have been prevented by its [`browser` setting in package.json](https://github.com/handlebars-lang/handlebars.js/pull/1540/files).

Thanks @raix for going above & beyond looking into the handlebars issue! For me, it was the only hiccup in an otherwise smooth upgrade to CRA 5, and the workaround...

Running mb21's test on various Node versions confirms that everything after 16.10 (including 16.13.1 and 17.2.0) shows the same ever-growing heap, also running 3 times as slow. We weren't able...

Following a suggestion on the [Node issue](https://github.com/nodejs/node/issues/40014#issuecomment-914016522), I tried running with the Node option `--no-compilation-cache`. Suddenly my CI with 5000 tests works again, and furthermore it finishes without the ~1GB...

You will get varying results depending on whether you're using a classic `node_modules` (Yarn 1, Yarn 2+ with `nodeLinker: node-modules`), pnpm, or PnP (Yarn 2+ default). With `node_modules`, hoisting will...

Possibly due to a problem on the react-bootstrap side: https://github.com/react-bootstrap/react-bootstrap/issues/6283

> The fact that TS widens the object type to have `marker: string` unless the variable declaration is specifically marked with `as const` seems like counter-intuitive and incorrect behaviour. >...

Still seeing it on Docker Desktop 4.2.1 (20.10.21, baeda1f) for Mac (M1), ~~but only for Alpine~~.

In case any one else find this: Looks like on the `connection` event, all the middleware is then called before reaching the route handler, where I would naturally try to...

My perspective here: We have a codebase with ~300 scattered cases of `export const FOO = 'foo' as const;`, which all get flagged by this rule. The auto-fix removes `as...