2020-10-15 18:10:26 +00:00
|
|
|
TAILWIND_CSS_VERSION := 1.9.2
|
2020-10-02 03:39:05 +00:00
|
|
|
|
2020-07-04 16:47:20 +00:00
|
|
|
build: toc
|
|
|
|
|
|
|
|
.PHONY: alex
|
|
|
|
alex:
|
2020-07-04 17:45:35 +00:00
|
|
|
@npx alex README.md
|
|
|
|
|
|
|
|
.PHONY: lint
|
|
|
|
lint:
|
|
|
|
@npx awesome-lint README.md
|
2020-07-04 16:47:20 +00:00
|
|
|
|
2020-10-02 03:39:05 +00:00
|
|
|
.PHONY: static
|
|
|
|
static:
|
2020-10-02 19:21:06 +00:00
|
|
|
@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 \
|
2020-10-02 19:21:06 +00:00
|
|
|
--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
|
|
|
|
2020-07-04 16:47:20 +00:00
|
|
|
.PHONY: toc
|
|
|
|
toc:
|
2020-07-04 17:45:35 +00:00
|
|
|
@npx doctoc README.md
|