Maël Nison
Maël Nison
For your initial problem, `logLevel: 'verbose'` would have given you some insight as to why Esbuild wasn't using PnP for resolving. I don't know why it required you to set...
From the look of it it should be compatible in most cases, since we store packages inside a standalone `node_modules` path (to make vendor detection easier): ``` /app/.yarn/cache/foo-1.0.0.zip/node_modules/foo/index.js ``` One...
I can't stress how dangerous this bug can be. We use `[contenthash:8]/chunk-[contenthash].min.js` as `chunkFilename` so that the chunks are namespaced in different folders rather than a single one (such namespacing...
Sounds good to me! Should I bump it as a major, or is minor fine?
Hey @IanVS, apologies, I completely missed your pings - I'll look at applying and publishing your patch later today (I assume you still need it?)
> In our case, the CLI binaries are hosted on GitHub releases instead of npm registry [...] hence avoiding the network configuration issue. You'd think that, but that's not quite...
Nope, it still do this. There is no error, the two main window will resize to 50/50 until leaving the minibuffer (and it's only when launching a successful autocomplete after...
> I feel like the node-modules linker option is more of a stopgap to help people transition to PNP, not to be a final destination. Just to clarify: the node_modules...
@ev1313 Do you need help following up on the feedback?
Hey @orta! It would be the first case of Yarn doing something different depending on what packages are inside the cwd, but it looks reasonable to me. The main issue...