-
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): replace standard-version with release-it
- Loading branch information
1 parent
924aac4
commit 6368cab
Showing
4 changed files
with
5,900 additions
and
1,463 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 } | ||
] | ||
} | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.