Files
socket.io/Makefile
Diga Widyaprana 62ac32bbb4 Minor refactoring
- Change glob supplied to gulp.src as suggested in https://github.com/socketio/engine.io-client/pull/455/files#diff-b9e12334e9eafd8341a6107dd98510c9R22
- Remove unused variable REPORTER in makefile
2016-03-06 14:52:53 +08:00

20 lines
273 B
Makefile

build: engine.io.js
engine.io.js:
@./node_modules/.bin/gulp build
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 build