Casey Rodarmor
Casey Rodarmor
I think I misunderstood this motivation behind this feature, and thus how it might be implemented. Is the desire to run *some* recipes in a justfile in parallel, or *all*...
> For my use case, from #676 I want selective parallelism, and I'd prefer to have this specified in a target. Command line parameters remove some of the usefulness of...
The question that I'm most curious about is whether or not people are depending on the fact that dependencies of a recipe without interdependencies run in order. I'm guessing that...
@timdp Definitely agree this is important and one of the biggest missing feature! I actually took a crack at this, but ran into weird lifetime/sync/send issues, and the code was...
It's a bit convoluted, but in `workflows/ci/release`, there's a test for whether or not the tag matches `[[:digit:]]+[.][[:digit:]]+[.][[:digit:]]`, i.e., whether or not it's a version tag `x.y.z` or some other...
I'm not sure if it would allow you to install them directly. You would need the wheels, which would only exist after an actions run, so they would be hard...
See comments in https://github.com/casey/just/pull/2361, but I'm leaning towards not adding this. I fear it will get out of date or the build will break, and I'm honestly pretty unlikely to...
This seems reasonable, but this PR looks a bit too complicated and I think some of the changes are unnecessary. I would create two new SearchConfig variants, `WithStdin`, and `WithStdinAndWorkingDirectory`,...
There are two options I can think of: 1. Add an additional field to `Search`, which is a string containing the loaded source 2. Make `Search::justfile` an enum, like `JustfileSource`...
This looks like a good approach to me!