Created
December 7, 2020 16:34
-
-
Save dceddia/be4d0f136a340359a57a52f168935f21 to your computer and use it in GitHub Desktop.
Build Tailwind
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SHELL = /bin/bash | |
.PHONY: all clean | |
all: _site/style.css | |
clean: | |
rm -rf _site/style.css | |
_site/style.css: styles/tailwind.css tailwind.config.js | node_modules | |
npx tailwind build styles/tailwind.css -o _site/style.css | |
# https://stackoverflow.com/a/48496716/1596013 | |
watch: | |
@while true; do $(MAKE) -q || $(MAKE); sleep 0.5; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment