blob: 447ab662e85a6e9e0a4e57947adfd973aa5b16e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
SASS ?= sass
PNPM ?= pnpm
CUSTOM_BOOTSTRAP_SCSS := vendor/custom-bootstrap/scss/custom.scss
CUSTOM_CSS_OUT := assets/css/custom.css
VENDOR_FOLDER := vendor/custom-bootstrap
.PHONY: css watch-css install
install:
$(SASS) -C $(VENDOR_FOLDER) install
css:
$(SASS) $(CUSTOM_BOOTSTRAP_SCSS) $(CUSTOM_CSS_OUT)
watch-css:
$(SASS) --watch $(CUSTOM_BOOTSTRAP_SCSS):$(CUSTOM_CSS_OUT)
|