burnchart/Makefile

18 lines
312 B
Makefile

install:
npm install
bower install
build-app:
./node_modules/.bin/browserify -e ./src/app.coffee -o public/js/app.js -d
watch-app:
./node_modules/.bin/watchify -e ./src/app.coffee -o public/js/app.js -d -v
build-vendor:
grunt
serve:
cd public; python -m SimpleHTTPServer 8000
deploy:
firebase deploy