forked from cheeriojs/cheerio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
36 lines (25 loc) · 851 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
33
34
35
36
REPORTER = dot
XYZ = node_modules/.bin/xyz --message 'Release X.Y.Z' --tag X.Y.Z --repo [email protected]:cheeriojs/cheerio.git --script scripts/prepublish
lint:
@./node_modules/.bin/jshint lib/ test/
test: lint
@./node_modules/.bin/mocha --reporter $(REPORTER)
setup:
@npm install
subl:
@subl lib/ test/ package.json index.js
test-cov:
@./node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- --reporter $(REPORTER)
report-cov: test-cov
@cat coverage/lcov.info | ./node_modules/.bin/coveralls
travis-test: lint
@make report-cov || echo "Couldn't submit"
bench:
@./benchmark/benchmark.js
.PHONY: release-major release-minor release-patch
release-major: LEVEL = major
release-minor: LEVEL = minor
release-patch: LEVEL = patch
release-major release-minor release-patch:
@$(XYZ) --increment $(LEVEL)
.PHONY: test build setup subl