awesome-django/Makefile

33 lines
610 B
Makefile
Raw Normal View History

2020-10-02 03:39:05 +00:00
TAILWIND_CSS_VERSION := 1.8.10
build: toc
.PHONY: alex
alex:
@npx alex README.md
.PHONY: lint
lint:
@npx awesome-lint README.md
2020-10-02 03:39:05 +00:00
.PHONY: static
static:
@JEKYLL_ENV=production \
npx -p tailwindcss@${TAILWIND_CSS_VERSION} tailwindcss build \
./src/style.css \
--config ./tailwind.config.js \
--output ./assets/style.css
2020-10-02 03:39:05 +00:00
@npx -p tailwindcss@${TAILWIND_CSS_VERSION} tailwindcss build \
./src/style.css \
--config ./tailwind.config.js \
--output ./assets/development.css
2020-10-02 03:39:05 +00:00
.PHONY: serve
serve:
2020-10-03 00:15:16 +00:00
@bundle exec jekyll serve --drafts --watch --port 8000
2020-10-02 03:39:05 +00:00
.PHONY: toc
toc:
@npx doctoc README.md