Maël Nison
Maël Nison
In Yarn, we offer a way to inspect information about the project dependencies via Prolog. At the moment this process is completely synchronous, but I'm considering adding some new predicates,...
Opening an issue here as requested in the support email (I initially asked on Twitter what was the best PoC, and was redirected to the support) 🙂 Yarn 2 doesn't...
The `Buffer` constructor is deprecated for security reason; Node recommends using `Buffer.from()` instead in such situations. Until it's fixed, it'll print annoying warning messages.
Counterpart of https://github.com/babel/babel/pull/10378
The trick is that while it should accept `unknown`, it should *only* accept `unknown` (or the actual right type). We don't want to allow passing a string as parameter if...
Because of reentrance & whatnot, the code flow might be a bit hard to follow sometimes, and I would feel more confident if we had tests to validate that the...
During the [September meeting](https://github.com/nodejs/loaders/blob/main/doc/meetings/2021-09-21.md) I mentioned how we would benefit from having a way to tell Node how to load package.json files, as in our case they don't necessarily exist...
As a practical example, let's say that we have: **/node_modules/foo/package.json** ```json { "name": "foo", "exports": { "./utils": "./sources/utils" } } ``` **/node_modules/foo/sources/utils.ts** ```ts // Content doesn't matter ``` **/index.js** ```ts...
Cf https://github.com/nodejs/loaders/issues/19#issuecomment-885932581 I was in vacation at the time of the past meetings (and I needed some time to ramp up on our implementation, since I didn't write it myself),...
Changes made to the NODE_OPTIONS environment variables weren't properly taken into account when spawning workers, unlike how `child_process.fork` works. Fixes part of https://github.com/nodejs/node/issues/37410 (I didn't touch the `process.execArgv` part, I...