- Add semantic-release with changelog and git plugins - Add manual version bump script (patch/minor/major) - Add GitHub Actions workflow for automated releases - Add npm scripts for version management - Setup .releaserc.json for semantic-release configuration
14 lines
413 B
JSON
14 lines
413 B
JSON
{
|
|
"branches": ["main"],
|
|
"plugins": [
|
|
"@semantic-release/commit-analyzer",
|
|
"@semantic-release/release-notes-generator",
|
|
"@semantic-release/changelog",
|
|
"@semantic-release/npm",
|
|
["@semantic-release/git", {
|
|
"assets": ["package.json", "CHANGELOG.md"],
|
|
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
|
|
}],
|
|
"@semantic-release/github"
|
|
]
|
|
} |