summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/retry/Makefile
blob: eee21a99dfc9ecc6c52da8227c3a30aa89a7ff58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
SHELL := /bin/bash

test:
	@node test/runner.js

release-major: test
	npm version major -m "Release %s"
	git push
	npm publish

release-minor: test
	npm version minor -m "Release %s"
	git push
	npm publish

release-patch: test
	npm version patch -m "Release %s"
	git push
	npm publish

.PHONY: test