all repos — homestead @ 8b05ff2843145bc9b4dbcb9fdca070b4e430fefc

Code for my website

Makefile (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.SHELLFLAGS := -eu -o pipefail -c
.ONESHELL:
.DELETE_ON_ERROR:

format: .formatstamp

.formatstamp:
	@echo "Formatting HTML..."
	@prettier --write --parser html --print-width 120 "public/**/*.html" > /dev/null
	@touch .formatstamp

clean:
	rm -rf ./public
	rm -rf ./.*stamp

.PHONY: all clean format compress