node-postgres/Makefile
2014-11-03 10:44:19 -05: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