You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

18 lines
304 B

WINTERSMITH = ./node_modules/.bin/wintersmith
build:
@./node_modules/.bin/cleancss ./contents/css/main.css > ./contents/css/main.min.css
@$(WINTERSMITH) build
clean:
@rm -rf build
preview: build
@$(WINTERSMITH) preview
pull:
git pull
update: pull build
.PHONY: build clean preview pull update