This repository was archived by the owner on Dec 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.release-it.json
More file actions
50 lines (50 loc) · 1.56 KB
/
.release-it.json
File metadata and controls
50 lines (50 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"github": {
"release": true,
"releaseName": "Release v${version}"
},
"git": {
"push": true,
"tagName": "v${version}",
"commitMessage": "release: v${version}",
"requireUpstream": false
},
"npm": {
"publish": true
},
"hooks": {
"after:bump": "npm run sync-template && npm run build",
"after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
},
"plugins": {
"@release-it/conventional-changelog": {
"ignoreRecommendedBump": true,
"infile": "CHANGELOG.md",
"header": "# Changelog",
"preset": {
"name": "conventionalcommits",
"types": [
{ "type": "feat", "section": "✨ Features" },
{ "type": "fix", "section": "🐛 Bug Fixes" },
{ "type": "perf", "section": "⚡ Improvements", "hidden": true },
{ "type": "revert", "section": "⏪ Reverts", "hidden": true },
{ "type": "chore", "section": "📦 Chores", "hidden": true },
{ "type": "docs", "section": "📝 Documentation", "hidden": true },
{ "type": "style", "section": "💄 Styles", "hidden": true },
{
"type": "refactor",
"section": "♻ Code Refactoring",
"hidden": true
},
{ "type": "test", "section": "✅ Tests", "hidden": true },
{ "type": "build", "section": "👷 Build System", "hidden": true },
{
"type": "ci",
"section": "🔧 Continuous Integration",
"hidden": true
}
]
}
}
}
}