forked from socketio/engine.io-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
20 lines (13 loc) · 650 Bytes
/
Makefile
File metadata and controls
20 lines (13 loc) · 650 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
help: ## print this message
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
build: ## update the browser build (engine.io.js)
@./node_modules/.bin/gulp build
test: ## run tests either in the browser or in Node.js, based on the `BROWSERS` variable
@./node_modules/.bin/gulp test
test-node: ## run tests in Node.js
@./node_modules/.bin/gulp test-node
test-zuul: ## run tests in the browser
@./node_modules/.bin/gulp test-zuul
test-cov: ## run tests with coverage in Node.js
@./node_modules/.bin/gulp test-cov
.PHONY: help test test-node test-zuul test-cov