Files
socket.io/Makefile
2013-12-25 13:39:51 -03:00

18 lines
296 B
Makefile

REPORTER = dot
build:
@./node_modules/.bin/browserify --standalone io -o socket.io.js .
test:
@./node_modules/.bin/mocha \
--reporter $(REPORTER) \
--bail
test-cov:
@./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- \
--reporter $(REPORTER) \
$(TESTS)
.PHONY: test