Files
socket.io/Makefile
Roman Shtylman d04eb7b29e fix Makefile
actually depend on source files for build of engine.io.js
2014-01-23 17:36:35 -05:00

22 lines
433 B
Makefile

REPORTER = dot
build: engine.io.js
engine.io.js: lib/*.js lib/transports/*.js
@./node_modules/.bin/browserify --standalone eio -o engine.io.js .
test:
@./node_modules/.bin/mocha \
--reporter $(REPORTER) \
test/index.js
@./node_modules/.bin/zuul -- test/index.js
test-cov:
@./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- \
--require ./test/common \
--reporter $(REPORTER) \
$(TESTS)
.PHONY: test