diff --git a/README.adoc b/README.adoc index dc11a2c..050cfa3 100644 --- a/README.adoc +++ b/README.adoc @@ -226,7 +226,7 @@ A variety of example justfiles can be found in the link:examples[examples direct === Listing Available Recipes -Recipes can be listed with `just --list` : +Recipes can be listed in alphabetical order with `just --list`: ```sh $ just --list @@ -244,6 +244,28 @@ $ just --summary build test deploy lint ``` +Pass `--unsorted` to print recipes in the order they appear in the justfile: + +```make +test: + echo 'Testing!' + +build: + echo 'Building!' +``` + +```sh +$ just --list --unsorted +Available recipes: + test + build +``` + +```sh +$ just --summary --unsorted +test build +``` + === Aliases Aliases allow recipes to be invoked with alternative names: