node-postgres/Makefile
2019-10-25 12:14:27 -05:00

16 lines
245 B
Makefile

.PHONY: test
test:
npm test
.PHONY: patch
patch: test
npm version patch -m "Bump version"
git push origin master --tags
npm publish
.PHONY: minor
minor: test
npm version minor -m "Bump version"
git push origin master --tags
npm publish