aboutsummaryrefslogtreecommitdiffstats
path: root/web/template/Makefile
diff options
context:
space:
mode:
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)