forked from jaredwray/cacheable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
32 lines (22 loc) · 789 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
BASE = .
NYC = ./node_modules/.bin/nyc
COVERAGE_OPTS = --lines 99 --statements 95 --branches 90 --functions 95
main: lint test docs
cover:
$(NYC) test/run.js
check-coverage:
$(NYC) check-coverage $(COVERAGE_OPTS)
test: cover check-coverage
test-cov: cover check-coverage
open coverage/lcov-report/index.html
test-travis: lint
./node_modules/.bin/nyc test/run.js --report lcovonly \
-- -T unit,functional -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
lint:
./node_modules/.bin/eslint ./lib && \
./node_modules/.bin/eslint ./test && \
./node_modules/.bin/eslint ./examples
docs:
./node_modules/.bin/jsdoc lib --recurse --readme README.md --package package.json
echo docs available in ./out/index.html
.PHONY: test