Clement Yan

Results 80 comments of Clement Yan

Can you expand your reproduction? It is unclear where you put that line and what command(s) you are running when the bug occurs. FWIW, I tried and failed to reproduce:...

I see, you want a literal `${x}` in your variable Maybe we should follow `dotenv-expand`'s [expansion logic](https://github.com/motdotla/dotenv-expand/blob/ff7e2efd0d9925c7da82c167ae77d22a6c76e878/README.md#what-rules-does-the-expansion-engine-follow).

> After running yarn link ../A from B I have Do you have a `dependency` or `devDependency` to `A` *in addition* to the `resolutions`?

Let's summarize everything that has been said in this thread so far: 1. `yarn link`'s signature changed between v1 and v2.0.0. Now it's a one-step process by simply giving it...

Looks like you have globally set `nodeLinker: pnpm`? If so this is one of the limitations of the `pnpm` linker: your `globalFolder` and the project (in this case, the temporary...

So, about the releases. Obviously these are not minor-level changes, so each package is either "patch" or "declined". And which package should be marked as which is a matter of:...

> The only other scenario I'm wondering about is the error message fix in `yarnpkg-pnp` - I assume this is a user facing patch-level change? Yes, error messages are part...

I am also facing this issue and I haven't seen this failure mode reported yet ``` PS C:\WINDOWS\system32> winget --info Windows Package Manager v1.12.350 Copyright (c) Microsoft Corporation. All rights...

The `pnpm` linker, by definition, needs to hardlink to a global content-addressable store. If you don't want that, you probably just want to use the `node-modules` linker. Or is there...

Hmm... The PnP hook should not be typechecked at all because it should be marked as `// @ts-nocheck`. Can you verify whether your PnP hook has it?