We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b45eda commit 1dd2d3aCopy full SHA for 1dd2d3a
.travis.yml
@@ -0,0 +1,6 @@
1
+language: node_js
2
+node_js:
3
+ - "0.10"
4
+ - "0.11"
5
+env:
6
+ - PGUSER=postgres
Makefile
@@ -0,0 +1,14 @@
+.PHONY: publish-patch test
+
+test:
+ npm test
+patch: test
7
+ npm version patch -m "Bump version"
8
+ git push origin master --tags
9
+ npm publish
10
11
+minor: test
12
+ npm version minor -m "Bump version"
13
14
0 commit comments