aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authorOscar Najera <hi@oscarnajera.com>2025-01-06 22:33:00 +0100
committerOscar Najera <hi@oscarnajera.com>2025-01-06 22:33:00 +0100
commit4f39910814164f91657de0b6de5c36241f19fc74 (patch)
tree93bb884e2c94b81c43b5882b8f77582d579fa668 /makefile
parent2e913997fbacd664a3ba73875e002227ba3b78c8 (diff)
downloadhugo-minimalist-theme-4f39910814164f91657de0b6de5c36241f19fc74.tar.gz
hugo-minimalist-theme-4f39910814164f91657de0b6de5c36241f19fc74.tar.bz2
hugo-minimalist-theme-4f39910814164f91657de0b6de5c36241f19fc74.zip
[RM] delete tachyons
Diffstat (limited to 'makefile')
-rw-r--r--makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/makefile b/makefile
index b8478cc..e656e22 100644
--- a/makefile
+++ b/makefile
@@ -3,19 +3,19 @@
#
# @file
# @version 0.1
-scss = assets/scss/
-cli = node_modules/tachyons-cli/cli.js
-.PHONY = css
+css = assets/css
+
+.PHONY = css deps
SRC = $(addsuffix .css, $(addprefix $(scss), pretachyons tables))
-css: $(scss)tachyons.css
+css: $(css)/tailwind.css
-$(scss)tachyons.css: $(scss)pretachyons.css $(cli)
- $(cli) $< > $@
+$(css)/tailwind.css: $(css)/input.css | deps
+ npx tailwindcss -i $< -o $@
-$(cli):
+deps:
npm install
# end