[ ] tree extension showing recipies and dependencies
About Just
You:
create a file in your project directory called justfile
add some recipes
then run with just my-recipe from the command line
Here's a super quick and unhelpful example of a justfile:
# behold a recipe
fun:
echo "hi" > tmp.txt
cat tmp.txt
rm tmp.txt
# they can have dependencies
superfun: fun
echo "woah that was fun!"
# and support other inline scripts
js:
#!/usr/bin/env node
console.log('woah, seriously?')
# great for pulling of things that are hard in the shell
ruby:
#!/usr/bin/env ruby
puts "yep."