aboutsummaryrefslogtreecommitdiffstats
path: root/web/template/Makefile
diff options
context:
space:
mode:
authormsi2025-11-15 11:54:05 -0300
committermsi2025-11-15 11:54:05 -0300
commitc722f8281d0f19080f19928a69de950c1472cf94 (patch)
treeb0ec41168c1b7f6d51f9d283e47f574c4eb70f0d /web/template/Makefile
parentd2e15101190f6ade30fd37b466d94cef85a2189f (diff)
downloadtemplates-c722f8281d0f19080f19928a69de950c1472cf94.tar.gz
Add post script and remove default styles
Diffstat (limited to 'web/template/Makefile')
-rw-r--r--web/template/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/template/Makefile b/web/template/Makefile
index 447ab66..e5b32df 100644
--- a/web/template/Makefile
+++ b/web/template/Makefile
@@ -2,16 +2,16 @@ SASS ?= sass
PNPM ?= pnpm
CUSTOM_BOOTSTRAP_SCSS := vendor/custom-bootstrap/scss/custom.scss
-CUSTOM_CSS_OUT := assets/css/custom.css
+CUSTOM_CSS_OUT := assets/css/styles.css
VENDOR_FOLDER := vendor/custom-bootstrap
.PHONY: css watch-css install
install:
- $(SASS) -C $(VENDOR_FOLDER) install
+ $(PNPM) -C $(VENDOR_FOLDER) install
css:
- $(SASS) $(CUSTOM_BOOTSTRAP_SCSS) $(CUSTOM_CSS_OUT)
+ $(SASS) -q $(CUSTOM_BOOTSTRAP_SCSS) $(CUSTOM_CSS_OUT)
watch-css:
$(SASS) --watch $(CUSTOM_BOOTSTRAP_SCSS):$(CUSTOM_CSS_OUT)