all repos — website @ e3cbf1423db26f2509603922277cfddcd87cbfdb

My website

Format HTML output with prettier

Alan Pearce
commit

e3cbf1423db26f2509603922277cfddcd87cbfdb

parent

6d4912537072135740864c88b27ee9fb41834f08

1 file changed, 5 insertions(+), 2 deletions(-)

changed files
M MakefileMakefile
@@ -13,6 +13,9 @@
$(PREFIX): zola build --output-dir $(PREFIX) +format: $(PREFIX) + prettier --write --parser html --print-width 200 "$(PREFIX)/**/*.html" + clean: rm -rf ./$(PREFIX)
@@ -61,7 +64,7 @@ compress: $(brotli_files) $(gzip_files) $(zstd_files)
install: compress -deploy: build compress +deploy: build format compress rsync --archive --delete public/ pappel.alanpearce.eu:/srv/http/alanpearce.eu -.PHONY: all clean build compress install deploy +.PHONY: all clean build format compress install deploy