Skip to content

Instantly share code, notes, and snippets.

@dceddia
Created December 7, 2020 16:34
Show Gist options
  • Save dceddia/be4d0f136a340359a57a52f168935f21 to your computer and use it in GitHub Desktop.
Save dceddia/be4d0f136a340359a57a52f168935f21 to your computer and use it in GitHub Desktop.
Build Tailwind
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