A generic web based timer to use on your brew day! http://brewtimer.brett.is
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.
 
 
 
 

13 lines
376 B

export PATH:=./node_modules/.bin:$(PATH)
compile: install
jade index.jade
cleancss styles/main.css -o styles/main.min.css
cleancss styles/general_foundicons.css -o styles/general_foundicons.min.css
cleancss styles/general_foundicons_ie7.css -o styles/general_foundicons_ie7.min.css
uglifyjs scripts/main.js -o scripts/main.min.js
install:
npm install
.PHONY: compile