-
Notifications
You must be signed in to change notification settings - Fork 3.1k
/
Makefile
61 lines (48 loc) · 1.3 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
57
58
59
60
61
TESTS = $(shell find test -type f -name "*.test.js")
TEST_TIMEOUT = 10000
MOCHA_REPORTER = spec
# NPM_REGISTRY = "--registry=http://registry.npm.taobao.org"
NPM_REGISTRY = ""
all: test
install:
@npm install $(NPM_REGISTRY)
pretest:
@if ! test -f config.js; then \
cp config.default.js config.js; \
fi
@if ! test -d public/upload; then \
mkdir public/upload; \
fi
test: install pretest
@NODE_ENV=test ./node_modules/mocha/bin/mocha \
--reporter $(MOCHA_REPORTER) \
-r should \
-r test/env \
--timeout $(TEST_TIMEOUT) \
$(TESTS)
testfile:
@NODE_ENV=test ./node_modules/mocha/bin/mocha \
--reporter $(MOCHA_REPORTER) \
-r should \
-r test/env \
--timeout $(TEST_TIMEOUT) \
$(FILE)
test-cov cov: install pretest
@NODE_ENV=test node \
node_modules/.bin/istanbul cover --preserve-comments \
./node_modules/.bin/_mocha \
-- \
-r should \
-r test/env \
--reporter $(MOCHA_REPORTER) \
--timeout $(TEST_TIMEOUT) \
$(TESTS)
build:
@./node_modules/loader-builder/bin/builder views .
run:
@node app.js
start: install build
@NODE_ENV=production ./node_modules/.bin/pm2 start app.js -i 0 --name "cnode" --max-memory-restart 400M
restart: install build
@NODE_ENV=production ./node_modules/.bin/pm2 restart "cnode"
.PHONY: install test testfile cov test-cov build run start restart