diff --git a/Makefile b/Makefile index 97f9b40..c4c08d5 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ .SILENT: -.PHONY: docs test deploy +.PHONY: deploy docs read-docs test BIN = ./node_modules/.bin @@ -13,5 +13,8 @@ deploy: 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')