Makefile 232 B

1234567891011121314
  1. .PHONY: publish-patch test
  2. test:
  3. npm test
  4. patch: test
  5. npm version patch -m "Bump version"
  6. git push origin master --tags
  7. npm publish
  8. minor: test
  9. npm version minor -m "Bump version"
  10. git push origin master --tags
  11. npm publish