fix(just): list recipes on bare just #98
Loading…
Reference in a new issue
No description provided.
Delete branch "fix/VAPP-91-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
defaultnever applied andpre-commit(the first recipe defined here) became the default. Typingjustto discover recipes rebuilt Tailwind and ran the full containerized check suite, and failed outright on a host with no docker daemon.Define
defaultexplicitly as the first recipe in the file and record in the header comment that recipe order matters anddefaultmust stay first.set allow-duplicate-recipes := truewas already present, so redefining the importeddefaultdoes not error.#VAPP-91
just