-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
72 lines (54 loc) · 2.21 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
################################################################################
# executables
################################################################################
MVERSION=node_modules/mversion/bin/version
ISTANBUL=node_modules/istanbul/lib/cli.js
MOCHA=node_modules/mocha/bin/mocha
_MOCHA=node_modules/mocha/bin/_mocha
COVERALLS=node_modules/coveralls/bin/coveralls.js
CODECLIMATE=node_modules/.bin/codeclimate
################################################################################
# variables
################################################################################
VERSION=`egrep -o '[0-9\.]{3,}' package.json -m 1`
################################################################################
# setup everything for development
################################################################################
setup:
@npm install
################################################################################
# tests
################################################################################
# run test
test:
@$(MOCHA)
# run tests and generates coverage
test.coverage:
@$(ISTANBUL) cover $(_MOCHA)
# run tests, generates coverage and start up 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
################################################################################
# publish / re-publish
################################################################################
publish:
git tag -a $(VERSION) -m "Releasing $(VERSION)"
git push origin master --tags
npm publish
################################################################################
# OTHERS
################################################################################
.PHONY: test