F4MP/tiltedcode/.releaserc
Jous99 37b16f1547 code upload
codigo original de f4mp y tilted para referencias
2026-01-06 18:45:00 +01:00

37 lines
No EOL
1.1 KiB
Text

{
"branches": ["master", "bluedove", "prerel"],
"plugins": [
["@semantic-release/commit-analyzer", {
"preset": "angular",
"releaseRules": [
{"type": "tweak", "release": "patch"},
{"scope": "no-release", "release": false}
]
}],
["@semantic-release/release-notes-generator", {
"writerOpts": {
"groupBy": "type",
"commitGroupSort": [
"feat", "tweak", "perf", "fix"],
"headingLevel": "2",
"sectionSymbol": "*"
},
"types": [
{"type": "feat", "section": "Features"},
{"type": "fix", "section": "Bug Fixes"},
{"type": "perf", "section": "Performance Improvements"},
{"type": "tweak", "section": "Tweaks"},
{"type": "WIP", "section": "WIP"}
]
}],
"@semantic-release/changelog",
["@semantic-release/npm", {
"npmPublish": false
}],
["@semantic-release/git", {
"assets": ["CHANGELOG.md"],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}]
],
"preset": "angular"
}