We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2970366 commit cee3e90Copy full SHA for cee3e90
1 file changed
packages/superdoc/.releaserc.cjs
@@ -76,22 +76,12 @@ const isPrerelease = config.branches.some(
76
)
77
78
if (!isPrerelease) {
79
- // Add changelog BEFORE git
80
- config.plugins.push([
81
- '@semantic-release/changelog',
82
- {
83
- changelogFile: 'CHANGELOG.md'
84
- }
85
- ])
86
-
87
- // Git plugin comes AFTER npm and changelog
+ // Git plugin commits the version bump back to the branch.
+ // No changelog — release notes live on the GitHub release only.
88
config.plugins.push([
89
'@semantic-release/git',
90
{
91
- assets: [
92
- 'CHANGELOG.md',
93
- 'package.json'
94
- ],
+ assets: ['package.json'],
95
message:
96
'chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}',
97
},
0 commit comments