We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84a5e7e commit c42b777Copy full SHA for c42b777
Makefile
@@ -141,7 +141,11 @@ tailwind-build:
141
tailwindcss -i $(TAILWIND_INPUT) -o $(TAILWIND_OUTPUT) --minify
142
cp $(TAILWIND_BASE)/*.js $(JS_OUTPUT)
143
144
-cicd-tailwind-build:
+cicd-tailwind-install:
145
+ @echo " >> Installing tailwind ..."
146
+ @npm install -D tailwindcss@latest postcss@latest autoprefixer@latest
147
+
148
+cicd-tailwind-build: cicd-tailwind-install
149
@echo " >> Regenerating CSS ..."
- @npm tailwindcss -i $(TAILWIND_INPUT) -o $(TAILWIND_OUTPUT) --minify
150
+ @npx tailwindcss -i $(TAILWIND_INPUT) -o $(TAILWIND_OUTPUT) --minify
151
@cp $(TAILWIND_BASE)/*.js $(JS_OUTPUT)
0 commit comments