-
Notifications
You must be signed in to change notification settings - Fork 11
/
Makefile
56 lines (43 loc) · 1.08 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
BIN = ./node_modules/.bin
# Source directories
TESTS = test/
# Report files
LCOVFILE = coverage/lcov.info
LCOVHTML = coverage/lcov-report/index.html
# Build tools
ESLINT = $(BIN)/eslint
MOCHA = $(BIN)/mocha
NYC = $(BIN)/nyc
COVERALLS = $(BIN)/coveralls
#========================================
# Linting
#========================================
lint:
$(ESLINT) .
#========================================
# Test
#========================================
test:
$(MOCHA) $(TESTS)
#========================================
# Coverage
#========================================
coverage:
$(NYC) --reporter=lcov --reporter=text-summary $(MOCHA) $(TESTS)
coverage-report:
cat $(LCOVFILE) | $(COVERALLS)
coverage-view: coverage
open $(LCOVHTML)
#========================================
# Clean
#========================================
clean-coverage:
rm -rf coverage/
clean: clean-coverage
clobber: clean
-rm -r node_modules
#========================================
# Global
#========================================
all: clean lint test coverage
.PHONY: lint test coverage clean clobber