Consider the following layout:
.
├── a.just
├── b.just
└── justfile
# a.just
mod b
top-level:
@echo top
# b.just
nested:
@echo "nested"
The output for the mid-level b module is misaligned, suggesting that b is available at the top level:
$ just --unstable --list
Available recipes:
a:
top-level
b:
nested
Consider the following layout:
The output for the mid-level
bmodule is misaligned, suggesting thatbis available at the top level: