@safermobility/release-it-git-flow
v0.3.0
Published
A release-it plugin that does git-flow operations
Maintainers
Readme
release-it-git-flow
A release-it plugin that does git-flow operations.
Setup
npm install --save-dev @safermobility/release-it-git-flowIn release-it config, disable the built-in git.tag and git.push options, set the required starting branch to develop (or your equivalent), and enable this plugin:
{
"$schema": "https://unpkg.com/release-it@19/schema/release-it.json",
"git": {
"requireBranch": "develop",
"tag": false,
"push": false
},
"plugins": {
"@safermobility/release-it-git-flow": {
"developBranch": "develop",
"masterBranch": "master",
"releasePrefix": "release/"
}
}
}