|
1 | 1 | {
|
2 | 2 | "git": {
|
3 |
| - "commitMessage": "chore(release): nestjs-ccxt@${version}" |
| 3 | + "commitMessage": "chore(release): hft-limit-order-book@${version}", |
| 4 | + "tagName": "v${version}", |
| 5 | + "tagAnnotation": "Release v${version}", |
| 6 | + "requireCommits": false, |
| 7 | + "requireCleanWorkingDir": false |
4 | 8 | },
|
5 | 9 | "github": {
|
6 |
| - "release": true |
| 10 | + "release": true, |
| 11 | + "releaseName": "v${version}", |
| 12 | + "commitArgs": ["-S"], |
| 13 | + "tagArgs": ["-s"] |
7 | 14 | },
|
8 |
| - "hooks": { |
9 |
| - "after:bump": "conventional-changelog -i CHANGELOG.md -s && git add CHANGELOG.md" |
| 15 | + "npm": { |
| 16 | + "publish": true |
| 17 | + }, |
| 18 | + "plugins": { |
| 19 | + "@release-it/conventional-changelog": { |
| 20 | + "header": "# Changelog", |
| 21 | + "infile": "CHANGELOG.md", |
| 22 | + "preset": { |
| 23 | + "name": "conventionalcommits", |
| 24 | + "types": [ |
| 25 | + { "type": "feat", "section": "Features" }, |
| 26 | + { "type": "fix", "section": "Bug Fixes" }, |
| 27 | + { "type": "chore", "hidden": true }, |
| 28 | + { "type": "docs", "hidden": true }, |
| 29 | + { "type": "style", "hidden": true }, |
| 30 | + { "type": "refactor", "hidden": true }, |
| 31 | + { "type": "perf", "hidden": true }, |
| 32 | + { "type": "test", "hidden": true } |
| 33 | + ] |
| 34 | + } |
| 35 | + } |
10 | 36 | }
|
11 | 37 | }
|
0 commit comments