mirror of
https://github.com/jimeh/heartb.it.git
synced 2026-02-19 04:46:40 +00:00
24 lines
409 B
Makefile
24 lines
409 B
Makefile
.SILENT:
|
|
.PHONY: build watch docs test deploy
|
|
|
|
BIN = ./node_modules/.bin
|
|
COFFEE_SRC = ./src
|
|
COFFEE_OUT = ./
|
|
REPORTER = spec
|
|
TEST_DIR = ./test
|
|
|
|
deploy:
|
|
git push heroku master
|
|
|
|
build:
|
|
$(BIN)/coffee -c -o $(COFFEE_OUT) $(COFFEE_SRC)
|
|
|
|
watch:
|
|
$(BIN)/coffee -cw -o $(COFFEE_OUT) $(COFFEE_SRC)
|
|
|
|
docs:
|
|
$(BIN)/docco $(shell find $(COFFEE_SRC) -name '*.coffee')
|
|
|
|
test:
|
|
$(BIN)/mocha -R $(REPORTER) $(TEST_DIR)/*.js
|