mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-18 15:55:05 +00:00
git-subtree-dir: packages/pg-query-stream git-subtree-mainline: cccf84e14b3281b753e1baab7bc194aaac5024a8 git-subtree-split: 9ced05e8aab65f3fdf1a67add87bfc9035e487e8
15 lines
232 B
Makefile
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
|