From f5a171aca1de7c6b71b6adc644443e6a9a3cdcbc Mon Sep 17 00:00:00 2001 From: axzilla Date: Thu, 13 Feb 2025 09:22:46 +0700 Subject: [PATCH] chore: update makefile --- Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 76387eb..dd1a1cd 100644 --- a/Makefile +++ b/Makefile @@ -12,10 +12,15 @@ server: --build.stop_on_error "false" \ --misc.clean_on_exit true -tailwind: +tailwind-clean: + tailwindcss -i ./assets/css/input.css -o ./assets/css/output.css --clean + +tailwind-watch: tailwindcss -i ./assets/css/input.css -o ./assets/css/output.css --watch + dev: - make -j4 templ server tailwind + make tailwind-clean + make -j3 templ server tailwind-watch debug: make -j3 templ tailwind-app tailwind