-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
83 lines (62 loc) · 2.48 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
################################################################################
# executables
################################################################################
NPM_CHECK=node_modules/.bin/npm-check
MVERSION=node_modules/.bin/mversion
MOCHA=node_modules/.bin//mocha
_MOCHA=node_modules/.bin//_mocha
COVERALLS=node_modules/.bin/coveralls
ISTANBUL=node_modules/.bin/istanbul
CODECLIMATE=node_modules/.bin/codeclimate
################################################################################
# variables
################################################################################
VERSION=`egrep -o '[0-9\.]{3,}' package.json -m 1`
################################################################################
# setup everything for development
################################################################################
setup:
@npm install
################################################################################
# tests
################################################################################
# test code in nodejs
test:
@$(MOCHA)
# test code and generates coverage
test.coverage:
@$(ISTANBUL) cover $(_MOCHA)
# test code, generates coverage and startup a simple server
test.coverage.preview: test.coverage
@cd coverage/lcov-report && python -m SimpleHTTPServer 8080
# test code, generates coverage and send it to coveralls and codeclimate
test.coverage.coveralls: test.coverage
@$(CODECLIMATE) < coverage/lcov.info
@cat coverage/lcov.info | $(COVERALLS)
################################################################################
# manages version bumps
################################################################################
bump.minor:
@$(MVERSION) minor
bump.major:
@$(MVERSION) major
bump.patch:
@$(MVERSION) patch
################################################################################
# checking / updating dependencies
################################################################################
deps.check:
@$(NPM_CHECK)
deps.upgrade:
@$(NPM_CHECK) -u
################################################################################
# publish / re-publish
################################################################################
publish:
git tag -a $(VERSION) -m "Releasing $(VERSION)"
git push origin master --tags
npm publish
################################################################################
# OTHERS
################################################################################
.PHONY: test