/
githubmirror
/
socket.io
Обзор
Документация
Войти
/
githubmirror
/
socket.io
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
socket.io-parser@3.3.6
Makefile
13 строк
551 B
Damien Arrachequesne
[chore] Update the Makefile
08 ноя 2018, 01:16
Не верифицирован
08 ноя 2018, 01:16
d95e38f
Код
Авторство
О чём код?
help: ## print this message @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}' test: ## run tests either in the browser or in Node.js, based on the `BROWSERS` variable @if [ "x$(BROWSERS)" = "x" ]; then make test-node; else make test-zuul; fi test-node: ## run tests in Node.js @./node_modules/.bin/mocha --reporter dot --bail test/index.js test-zuul: ## run tests in the browser @./node_modules/zuul/bin/zuul test/index.js .PHONY: help test test-node test-zuul