Add boilerplate files

This commit is contained in:
Brian M. Carlson 2014-09-24 23:43:15 -04:00
parent 19a2d26fc1
commit 40f361fd8e
2 changed files with 20 additions and 0 deletions

6
.travis.yml Normal file
View File

@ -0,0 +1,6 @@
language: node_js
node_js:
- "0.10"
- "0.11"
env:
- PGUSER=postgres

14
Makefile Normal file
View File

@ -0,0 +1,14 @@
.PHONY: publish-patch test
test:
npm test
patch: test
npm version patch -m "Bump version"
git push origin master --tags
npm publish
minor: test
npm version minor -m "Bump version"
git push origin master --tags
npm publish