Skip to content

Commit daf83c4

Browse files
author
tim-kos
committed
adding npm shortcuts
1 parent 41b80fb commit daf83c4

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Makefile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,20 @@ SHELL := /bin/bash
33
test:
44
@node test/runner.js
55

6+
release-major: test
7+
npm version major -m "Release %s"
8+
git push
9+
npm publish
10+
11+
release-minor: test
12+
npm version minor -m "Release %s"
13+
git push
14+
npm publish
15+
16+
release-patch: test
17+
npm version patch -m "Release %s"
18+
git push
19+
npm publish
20+
621
.PHONY: test
722

0 commit comments

Comments
 (0)