all repos — homestead @ 13e0173a57cc231aac36bf2de8207a17f0a32482

Code for my website

Format HTML output with prettier

Alan Pearce
commit

13e0173a57cc231aac36bf2de8207a17f0a32482

parent

5d003ae62c973073ececc0b83f826b037b59b1e8

2 files changed, 6 insertions(+), 2 deletions(-)

jump to
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
M flake.nixflake.nix
@@ -23,6 +23,7 @@ makeFlags = [ "PREFIX=$(out)" ];
nativeBuildInputs = with pkgs; [ zola + nodePackages_latest.prettier fd brotli gzip