mirror of
https://github.com/jimeh/heartb.it.git
synced 2026-02-19 12:56:47 +00:00
18 lines
307 B
Makefile
18 lines
307 B
Makefile
.SILENT:
|
|
.PHONY: docs test deploy
|
|
|
|
BIN = ./node_modules/.bin
|
|
|
|
LIB_PATH = ./lib
|
|
TEST_PATH = ./test
|
|
REPORTER = spec
|
|
|
|
deploy:
|
|
git push heroku master
|
|
|
|
docs:
|
|
$(BIN)/docco app.coffee $(shell find $(LIB_PATH) -name '*.coffee')
|
|
|
|
test:
|
|
$(BIN)/mocha -R $(REPORTER) $(shell find $(TEST_PATH) -name '*.test.coffee')
|