| 123456789101112131415161718192021222324252627 | TAILWIND_CSS_VERSION := 1.8.10build: toc.PHONY: alexalex:	@npx alex README.md.PHONY: lintlint:	@npx awesome-lint README.md.PHONY: staticstatic:	@npx -p tailwindcss@${TAILWIND_CSS_VERSION} tailwindcss build \		./src/style.css \		--config ./tailwind.config.js \		--output ./assets/style.css.PHONY: serveserve:	bundle exec jekyll serve --drafts --watch --port 4000.PHONY: toctoc:	@npx doctoc README.md
 |