burnchart/Makefile

17 lines
183 B
Makefile

install:
npm install
bower install
build:
grunt
watch:
watch --color -n 1 make build
serve:
cd public; python -m SimpleHTTPServer 8000
deploy:
firebase deploy
.PHONY: build