fix(just): list recipes when run with no arguments #133
Loading…
Reference in a new issue
No description provided.
Delete branch "fix/YT-79-default-recipe-lists-recipes"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
just resolves the no-argument recipe by source order in the root justfile and never selects an imported recipe, so common's
defaultwas ineligible and the first locally defined recipe,pre-commit, became the default. Typingjustto discover recipes instead launched the full containerized check suite, which fails outright on a host with no docker daemon.Define an explicit
defaultrecipe running@just --listas the first recipe in the justfile (allow-duplicate-recipes is already set, so redefining the imported name is fine), and update the header comment: dropdefaultfrom the inherited list and record that recipe order matters here.#YT-79