⚙️ Config updates

This commit is contained in:
Jeff Triplett
2021-04-08 21:58:10 -05:00
parent 7e332b4223
commit 67ce471008
6 changed files with 67 additions and 302 deletions

32
justfile Normal file
View File

@@ -0,0 +1,32 @@
TAILWIND_CSS_VERSION := "2.1.1"
@_default:
just --list
@alex:
npx alex README.md
@build:
just toc
@lint:
npx awesome-lint README.md
@static:
JEKYLL_ENV=production \
npx -p tailwindcss@{{TAILWIND_CSS_VERSION}} tailwindcss build \
./src/style.css \
--config ./tailwind.config.js \
--output ./assets/style.css
npx -p tailwindcss@{{TAILWIND_CSS_VERSION}} tailwindcss build \
./src/style.css \
--config ./tailwind.config.js \
--output ./assets/development.css \
-w
@serve:
bundle exec jekyll serve --drafts --watch --port 8000
@toc:
npx doctoc README.md