justfile 293 B

123456789101112131415161718192021
  1. @_default:
  2. just --list
  3. @alex:
  4. npx alex README.md
  5. @build:
  6. just toc
  7. bundle exec jekyll build
  8. @lint:
  9. -curlylint _layouts/
  10. -npx awesome-lint README.md
  11. @serve:
  12. modd --file=modd.conf
  13. bundle exec jekyll serve --drafts --watch --port 8000
  14. @toc:
  15. npx doctoc README.md