Casey Rodarmor
Casey Rodarmor
In general, I try avoid maintaining packages and integrations, aside from the official releases. However, I'd be happy to accept a PR to link to this in the readme if...
I think this is probably not a bug. I'm not sure if the current behavior is intended or not, i.e., did we even think of this when implementing `import`, but...
This is currently not possible. On the CLI, only variables in the root justfile can be overridden, but it would be nice to be able to override submodule variables.
Thanks for the detailed writeup! This sounds good to me. I'd be inclined to leave out `timediff` and `timesince` for now. In general, I try to avoid functions that don't...
We certainly could let them take a timestamp, although I'd wait to do that until someone has a specific use-case. That way we can ensure that it's both needed, and...
I added `datetime(format)` and `datetime_utc(format)` in #2167. For now the format string must be specified, but it should be easy enough to add versions which have no arguments and which...
> Oh this is interesting - it would be a bit nicer not to have to declare `a` in the global namespace, but I wouldn't have guessed this, thanks! lmao...
Opened an issue to figure this out #2381.
As of #2382, you can now use earlier recipe parameters in later recipe parameter default values, so this will now work: ```just target a *b=a: echo {{ b }} ```...
> Is this the intended way to have UDFs? Not really, but only because there isn't any way to create user-defined functions. #1059 tracks adding user-defined functions, although there's been...