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