Files
socket.io/Makefile
2014-02-20 13:43:08 -08:00

22 lines
379 B
Makefile

REPORTER = dot
build: socket.io.js
socket.io.js: lib/*.js package.json
@./support/browserify.sh > socket.io.js
test:
@./node_modules/.bin/mocha \
--reporter $(REPORTER) \
--bail \
test/index.js
@./node_modules/.bin/zuul -- test/index.js
test-cov:
@./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- \
--reporter $(REPORTER) \
test/
.PHONY: test