Just command runner
Cheat sheet for the just command runner.
Expressing dependencies
# Run task b and c before a
# Just like Makefile
a: b c
# Run task b and c after a
# per: https://github.com/casey/just/discussions/818
a: && b c
Cheat sheet for the just command runner.
# Run task b and c before a
# Just like Makefile
a: b c
# Run task b and c after a
# per: https://github.com/casey/just/discussions/818
a: && b c