mirror of
https://github.com/socketio/socket.io.git
synced 2026-04-30 03:00:39 -04:00
22 lines
316 B
Makefile
22 lines
316 B
Makefile
|
|
REPORTER = dot
|
|
|
|
build: socket.io.js
|
|
|
|
socket.io.js socket.io.min.js: lib/*.js package.json
|
|
@./node_modules/.bin/gulp
|
|
|
|
test:
|
|
@./node_modules/.bin/gulp test
|
|
|
|
test-node:
|
|
@./node_modules/.bin/gulp test-node
|
|
|
|
test-zuul:
|
|
@./node_modules/.bin/gulp test-zuul
|
|
|
|
test-cov:
|
|
@./node_modules/.bin/gulp test-cov
|
|
|
|
.PHONY: test
|