Makefile 609 B

123456789101112131415161718192021222324252627282930313233
  1. TAILWIND_CSS_VERSION := 1.9.2
  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. @JEKYLL_ENV=production \
  12. npx -p tailwindcss@${TAILWIND_CSS_VERSION} tailwindcss build \
  13. ./src/style.css \
  14. --config ./tailwind.config.js \
  15. --output ./assets/style.css
  16. @npx -p tailwindcss@${TAILWIND_CSS_VERSION} tailwindcss build \
  17. ./src/style.css \
  18. --config ./tailwind.config.js \
  19. --output ./assets/development.css
  20. .PHONY: serve
  21. serve:
  22. @bundle exec jekyll serve --drafts --watch --port 8000
  23. .PHONY: toc
  24. toc:
  25. @npx doctoc README.md