mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-25 16:03:13 +00:00
git-subtree-dir: packages/pg-pool git-subtree-mainline: 69345eb96aa2552b288247960aa7126d41210eb6 git-subtree-split: cb96ae2d6e37b1414df405d80258e0e2bafeaba0
15 lines
244 B
Makefile
15 lines
244 B
Makefile
.PHONY: jshint test 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
|