versini-release
v1.2.0
Published
Release Helper
Downloads
2
Readme
Release Helper for my packages
This package provides very specific options to bump and release my own packages.
Installation
$ yarn add --dev versini-release
Update your package.json
file with the following scripts calls:
"scripts": {
"bump": "versini-release -t bump",
"release": "versini-release -t release"
}
NOTE: The release
script is expecting to run 2 other scripts, called test:coverage
and changelog
. Make sure they do exist before running the release
script. You can ignore them in the .versini-release.config.js
file.
Usage
Bump to the next version
$ yarn bump
Tag the release
$ yarn release