File tree 1 file changed +9
-10
lines changed 1 file changed +9
-10
lines changed Original file line number Diff line number Diff line change 1
1
2
- REPORTER = dot
2
+ help : # # print this message
3
+ @grep -E ' ^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST ) | awk ' BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
3
4
4
- build : socket.io.js
5
+ build : # # update the browser builds
6
+ @./node_modules/.bin/gulp build
5
7
6
- socket.io.js socket.io.min.js : lib/* .js package.json
7
- @./node_modules/.bin/gulp
8
-
9
- test :
8
+ test : # # run tests either in the browser or in Node.js, based on the `BROWSERS` variable
10
9
@./node_modules/.bin/gulp test
11
10
12
- test-node :
11
+ test-node : # # run tests in Node.js
13
12
@./node_modules/.bin/gulp test-node
14
13
15
- test-zuul :
14
+ test-zuul : # # run tests in the browser
16
15
@./node_modules/.bin/gulp test-zuul
17
16
18
- test-cov :
17
+ test-cov : # # run tests with coverage in Node.js
19
18
@./node_modules/.bin/gulp test-cov
20
19
21
- .PHONY : test
20
+ .PHONY : help test test-node test-zuul test-cov
You can’t perform that action at this time.
0 commit comments