mirror of
https://github.com/HoshinoSuzumi/rayine-ui.git
synced 2025-04-04 16:48:51 +08:00
25 lines
465 B
JSON
25 lines
465 B
JSON
{
|
|
"plugins": {
|
|
"release-it-pnpm": {},
|
|
"@release-it/conventional-changelog": {
|
|
"preset": {
|
|
"name": "conventionalcommits"
|
|
},
|
|
"ignoreRecommendedBump": true,
|
|
"infile": "CHANGELOG.md",
|
|
"header": "# Changelog"
|
|
}
|
|
},
|
|
"git": {
|
|
"commitMessage": "chore(release): v${version}",
|
|
"tagName": "v${version}"
|
|
},
|
|
"hooks": {
|
|
"before:init": [
|
|
"pnpm lint",
|
|
"pnpm test",
|
|
"pnpm prepack"
|
|
]
|
|
}
|
|
}
|