pandoc-blog/justfile
Christopher P. Brown 938049d1cc initial commit
i guess it's a pandoc blog now!
2022-03-01 16:07:01 -07:00

21 lines
222 B
Makefile

# 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