Skip to content

Commit

Permalink
Make it a dot release-it.json
Browse files Browse the repository at this point in the history
  • Loading branch information
rmrf committed Dec 10, 2019
1 parent 4c2b25e commit 1349949
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .release-it.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"hooks": {},
"git": {
"changelog": "git log --pretty=format:\"* %s (%h)\" ${latestTag}...HEAD",
"requireCleanWorkingDir": true,
"requireUpstream": true,
"requireCommits": false,
"addUntrackedFiles": false,
"commit": true,
"commitMessage": "Release ${version}",
"commitArgs": "",
"tag": true,
"tagName": "${version}",
"tagAnnotation": "Release ${version}",
"tagArgs": "",
"push": true,
"pushArgs": "--follow-tags",
"pushRepo": "origin"
},
"npm": {
"publish": false,
"publishPath": ".",
"access": null,
"otp": null
},
"github": {
"release": true,
"releaseName": "Release ${version}",
"releaseNotes": null,
"preRelease": false,
"draft": false,
"tokenRef": "GITHUB_TOKEN",
"assets": null,
"host": null,
"timeout": 0,
"proxy": null
},
"gitlab": {
"release": false,
"releaseName": "Release ${version}",
"releaseNotes": null,
"tokenRef": "GITLAB_TOKEN",
"assets": null,
"origin": null
}
}

0 comments on commit 1349949

Please sign in to comment.