HTMX + Alpine.js + TailwindCSS
This commit is contained in:
parent
b62a2dd8c4
commit
d614f039d3
37 changed files with 114 additions and 233 deletions
15
Makefile
Normal file
15
Makefile
Normal file
|
@ -0,0 +1,15 @@
|
|||
install: ## Install dependencies
|
||||
@qlot install
|
||||
|
||||
dev: ## Run dev mode
|
||||
@tailwindcss -i ./public/global.css -o ./public/dist.css --watch=always < /dev/null &
|
||||
|
||||
stop: ## Stop dev mode
|
||||
@pkill -f tailwind
|
||||
|
||||
build: ## Build
|
||||
@tailwindcss -i ./public/global.css -o ./public/dist.css
|
||||
|
||||
help: ## Show options
|
||||
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | \
|
||||
awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
|
Loading…
Add table
Add a link
Reference in a new issue