Migrate from Makefile to justfile

This commit is contained in:
Dave Gallant
2024-03-18 20:45:35 -04:00
parent 54de6a38c8
commit 2902f5735b
3 changed files with 10 additions and 32 deletions

9
justfile Normal file
View File

@@ -0,0 +1,9 @@
build: clean
npm ci
hugo --minify
clean:
rm -rf public/
server:
hugo server --buildDrafts