Makefile 424 B

123456789101112131415161718192021222324252627
  1. TAILWIND_CSS_VERSION := 1.8.10
  2. build: toc
  3. .PHONY: alex
  4. alex:
  5. @npx alex README.md
  6. .PHONY: lint
  7. lint:
  8. @npx awesome-lint README.md
  9. .PHONY: static
  10. static:
  11. @npx -p tailwindcss@${TAILWIND_CSS_VERSION} tailwindcss build \
  12. ./src/style.css \
  13. --config ./tailwind.config.js \
  14. --output ./assets/style.css
  15. .PHONY: serve
  16. serve:
  17. bundle exec jekyll serve --drafts --watch --port 4000
  18. .PHONY: toc
  19. toc:
  20. @npx doctoc README.md