mirror of
https://github.com/jimeh/heartb.it.git
synced 2026-02-19 04:46:40 +00:00
21 lines
349 B
Makefile
21 lines
349 B
Makefile
.SILENT:
|
|
.PHONY: deploy docs read-docs test
|
|
|
|
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')
|
|
|
|
read-docs:
|
|
open docs/app.html
|
|
|
|
test:
|
|
$(BIN)/mocha -R $(REPORTER) $(shell find $(TEST_PATH) -name '*.test.coffee')
|