added deploy make task

This commit is contained in:
2012-03-08 01:15:06 +00:00
parent 4dcb789f17
commit 9573567b32

View File

@@ -1,5 +1,5 @@
.SILENT:
.PHONY: build watch docs test
.PHONY: build watch docs test deploy
BIN = ./node_modules/.bin
COFFEE_SRC = ./src
@@ -7,6 +7,9 @@ COFFEE_OUT = ./
REPORTER = spec
TEST_DIR = ./test
deploy:
git push heroku master
build:
$(BIN)/coffee -c -o $(COFFEE_OUT) $(COFFEE_SRC)