aboutsummaryrefslogtreecommitdiff
path: root/node_modules/superagent/Makefile
diff options
context:
space:
mode:
authorAlee14 <Alee14498@gmail.com>2017-07-28 16:20:27 -0400
committerAlee14 <Alee14498@gmail.com>2017-07-28 16:20:27 -0400
commitd35e0862e6b60fe3c4f823371627359f3ce3e68b (patch)
treed98b788eb1abf0a8814207b993b4e22efe711deb /node_modules/superagent/Makefile
parent20993df62e7e38ed43428aafa5981afc3543bdea (diff)
downloadAleeBot-d35e0862e6b60fe3c4f823371627359f3ce3e68b.tar.gz
AleeBot-d35e0862e6b60fe3c4f823371627359f3ce3e68b.tar.bz2
AleeBot-d35e0862e6b60fe3c4f823371627359f3ce3e68b.zip
Removing node modules (go get them yourself :P)
Diffstat (limited to 'node_modules/superagent/Makefile')
-rw-r--r--node_modules/superagent/Makefile57
1 files changed, 0 insertions, 57 deletions
diff --git a/node_modules/superagent/Makefile b/node_modules/superagent/Makefile
deleted file mode 100644
index 31f3ef3..0000000
--- a/node_modules/superagent/Makefile
+++ /dev/null
@@ -1,57 +0,0 @@
-
-NODETESTS ?= test/*.js test/node/*.js
-BROWSERTESTS ?= test/*.js test/client/*.js
-REPORTER = spec
-
-all: superagent.js
-
-test:
- @if [ "x$(BROWSER)" = "x" ]; then make test-node; else make test-browser; fi
-
-test-node:
- @NODE_ENV=test NODE_TLS_REJECT_UNAUTHORIZED=0 ./node_modules/.bin/mocha \
- --require should \
- --reporter $(REPORTER) \
- --timeout 5000 \
- --growl \
- $(NODETESTS)
-
-test-cov: lib-cov
- SUPERAGENT_COV=1 $(MAKE) test REPORTER=html-cov > coverage.html
-
-test-browser:
- SAUCE_APPIUM_VERSION=1.6 ./node_modules/.bin/zuul -- $(BROWSERTESTS)
-
-test-browser-local:
- ./node_modules/.bin/zuul --no-coverage --local 4000 -- $(BROWSERTESTS)
-
-lib-cov:
- jscoverage lib lib-cov
-
-superagent.js: lib/node/*.js lib/node/parsers/*.js
- @./node_modules/.bin/browserify \
- --standalone superagent \
- --outfile superagent.js .
-
-test-server:
- @node test/server
-
-docs: index.html test-docs docs/index.md
-
-index.html: docs/index.md docs/head.html docs/tail.html
- marked < $< \
- | cat docs/head.html - docs/tail.html \
- > $@
-
-docclean:
- rm -f index.html test.html
-
-test-docs: docs/head.html docs/tail.html
- make test REPORTER=doc \
- | cat docs/head.html - docs/tail.html \
- > test.html
-
-clean:
- rm -fr superagent.js components
-
-.PHONY: test-cov test docs test-docs clean test-browser-local