mirror of
https://github.com/socketio/socket.io.git
synced 2026-04-30 03:00:39 -04:00
22 lines
433 B
Makefile
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
|