Maël Nison

Results 627 comments of Maël Nison

You have two caches: global and local. `cacheFolder` is the local one, used when `enableGlobalCache: false`. `globalFolder` (to which Yarn adds a `cache` segment) is the global one. You can...

Yarn reformats the package.json. If it did this change, it's that it wouldn't have had functional change (ie your package is called `my-script`, so "bin as a string" is implicitly...

👋 ! > How do editor integrations typically work with PnP? My understanding is that when Plug n' Play is in use, there is no `node_modules` folder, and Node scripts...

> Is there any escape from this madness or is it a case of benching Berry until package maintainers make their packages PnP compatible? (Possibly delaying Berry uptake months/years) Storybook...

(Didn't mean to close, sorry, fat fingers)

I think it's worth opening an issue on the ESLint repository - from my limited understanding, the problem is that the ESLint configuration doesn't resolve plugins relative to the configuration,...

Having synchronous hooks could also be interesting for 3rd-party "Node.js Resolver" implementations, for which switching their API from sync to async just for loaders is a challenge (ex https://github.com/wooorm/import-meta-resolve/issues/10#issuecomment-1968831154).

Yes, I think this makes a lot of sense 👍 > But it involves some extra side effects during publish, which some people might not like. I don't think we'd...

I'd prefer 3 as well. The current async off-thread model has been revealed relatively fragile, with various edge cases difficult to solve in userland, or even wrap our heads around.

Indeed, I can repro, and I found where it comes from. For context, if you write the TS-compatible package `my-lib` which has a peer dependency on, say, `lodash`, it implies...