mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
git-subtree-dir: packages/pg-cursor git-subtree-mainline: ebb81dbfa635eca73d16d54b501f04c8d843bac5 git-subtree-split: 492fbdbb65f6f33396d1017fa4cdbbb247dd3895
16 lines
245 B
Makefile
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
|