just
just copied to clipboard
🤖 Just a command runner
Handles two cases: - working directory doesn't exist. - working directory cannot be changed into due to on of the following: - The process lacks permissions to view the contents....
This commit modifies the `--dump` option to optionally take the name of a recipe as an argument, and only dump the contents of that single recipe. Resolves https://github.com/casey/just/issues/737
Allow setting the working directory of a recipe to an arbitrary directory. Good first issue!
Addresses https://github.com/casey/just/issues/1909
Hello. `just` is a great tool and I really like it. However this automatic change directory behavior and using `[no-cd]` in all my recipes is a bit annoying (but still...
For justfiles that override `working-directory` value, if the dir does not exist, just gives a rather criptic message: ```just set working-directory := 'missing' [no-cd] bar: pwd # this one will...
As suggested in #1971.
I wanted to ask whether we could extend `just` that it runs independent dependencies in parallel similar to make. Or is this feature somewhere hidden somewhere?
I find it helpful to run just recipes within a specific PATH environment. Here is an example: ```justfile path_sep := if os_family() == 'windows' { ';' } else { ':'...
I think it would be nice to have the possibility to pipe justfiles into just, like so: ```bash cat input.txt | just --dump --justfile - > output.txt ``` It would...