diff --git a/Makefile b/Makefile index 42006f5..e439a90 100644 --- a/Makefile +++ b/Makefile @@ -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)