node-postgres/Makefile
2014-09-24 23:43:15 -04:00

15 lines
232 B
Makefile

.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