pandoc-blog/justfile

21 lines
222 B
Plaintext

# show all recipes
default:
just --list
# build
build:
make build
# watch for changes
watch:
ls content/*.md | entr make build
# upload
up:
echo "TODO"
# clean dist
clean:
rm -rf dist/*
touch dist/.gitkeep