Paul Soporan

Results 28 comments of Paul Soporan

Note: [This error](https://github.com/arcanis/clipanion/pull/89/checks?check_run_id=2710697159#step:6:193) will only go away once `clcs` gets published to the registry.

> I'm not sure how the type needs to change, though. See https://github.com/arcanis/clipanion/pull/89/commits/c4d8d916cee5dca735060462f9d44d5c44dc5a80 > Is there a brief explanation of this bug and how to reproduce it? I don't fully...

> it's not unreasonable they'd solve the ambiguity by first typing the leading - That's already what happens, we only complete options if a `-` is typed, otherwise we only...

> It seems there's a bug if a command has options that have validators attached. Totally forgot about validators, I'll need a bit of time to think about how validators...

> so there is no way to get more details about the default command. There actually is, but it's undocumented. `--help` can work as a bound option that accepts a...

Try to remove Extra Utils. If it still happens, it's not Extra Utils 2's fault. If it doesn't happen, try reproducing the crash only with Extra Utils.

So did it still crash without ExtraUtils?

> > > Since Dependabot apparently doesn't work at all in our yarn v2 "Zero Install" repo, I wrote [a GitHub Actions workflow](https://github.com/microsoft/RichCodeNavIndexer/blob/master/.github/workflows/dependency_updates.yml?rgh-link-date=2020-08-07T02%3A54%3A01Z) that basically does what Dependabot did, but...

I agree that `$PWD` is not that useful because of the existence of `$(pwd)` (even though I think we should still add it for better bash compliance), while thinking about...

@yinzara The shell has [a state](https://github.com/yarnpkg/berry/blob/17e808b01cb8a96571db3ddb7792cac5d866a280/packages/yarnpkg-shell/sources/index.ts#L43) which contains the `cwd`, which is only modified by the [`cd` builtin](https://github.com/yarnpkg/berry/blob/17e808b01cb8a96571db3ddb7792cac5d866a280/packages/yarnpkg-shell/sources/index.ts#L64). Because of this, I think that the best option would be to...