Skip to content

Commit

Permalink
chore(deps): replace standard-version with release-it
Browse files Browse the repository at this point in the history
  • Loading branch information
fasenderos committed Aug 20, 2023
1 parent 924aac4 commit 6368cab
Show file tree
Hide file tree
Showing 4 changed files with 5,900 additions and 1,463 deletions.
34 changes: 30 additions & 4 deletions .release-it.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,37 @@
{
"git": {
"commitMessage": "chore(release): nestjs-ccxt@${version}"
"commitMessage": "chore(release): hft-limit-order-book@${version}",
"tagName": "v${version}",
"tagAnnotation": "Release v${version}",
"requireCommits": false,
"requireCleanWorkingDir": false
},
"github": {
"release": true
"release": true,
"releaseName": "v${version}",
"commitArgs": ["-S"],
"tagArgs": ["-s"]
},
"hooks": {
"after:bump": "conventional-changelog -i CHANGELOG.md -s && git add CHANGELOG.md"
"npm": {
"publish": true
},
"plugins": {
"@release-it/conventional-changelog": {
"header": "# Changelog",
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "chore", "hidden": true },
{ "type": "docs", "hidden": true },
{ "type": "style", "hidden": true },
{ "type": "refactor", "hidden": true },
{ "type": "perf", "hidden": true },
{ "type": "test", "hidden": true }
]
}
}
}
}
14 changes: 0 additions & 14 deletions .versionrc.json

This file was deleted.

Loading

0 comments on commit 6368cab

Please sign in to comment.