just
just copied to clipboard
š¤ Just a command runner
Many of the various editors formatting plugins expect data to flow via stdin/stdout rather than touching the file directly. It would be great if `just --fmt` could do that too.
To avoid making this a backwards incompatible change, only strings and backticks preceeded by an `f` will allow interpolation: ``` bar := "world" foo := f"Hello, {{bar}}!" baz := f`echo...
Seeing #626 I started investing some time into a draft for parallel execution. This PR would: - run dependencies in parallel, when given the `[parallel]` attribute - run given tasks...
Hi, I'm glad to discover `just` since `make` is painful to write. However, I still like some dependencies to be actual files. The recipe should run if file exists or...
Modules are interesting... has anyone already thought about LSP? It just came to mind. I wouldn't be surprised if in the future `just` had its own package manager. I don't...
Users often have scripts they'd like to source, alias they'd like to define, or environment variables they'd like to set for all or most shells in a justfile. One possible...
The bash completion script does not suggest recipe names if there's already a flag on the command line. So, for example: ``` just --quiet ``` Does not complete available recipe...
I have checked the [module documentation](https://just.systems/man/en/chapter_56.html) and the [aliases documentation](https://just.systems/man/en/chapter_26.html). It'd be awesome if we could do something like this ```sh mod test ".config/commands/test.justfile" alias t := test ``` And...
Hi, great project, thank you so much! #### Intro I laughed at the comment "Iām pretty sure that nobody actually uses this feature" [here](https://github.com/casey/just#non-project-specific-justfile), because I've been using exactly that...
Can it be done? ```justfile [unix] export VAR=1 [windows] export VAR=2 ```