mirror of
https://github.com/wsvincent/awesome-django.git
synced 2025-12-12 07:28:12 +00:00
⚙️ Config updates
This commit is contained in:
32
justfile
Normal file
32
justfile
Normal 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
|
||||
Reference in New Issue
Block a user