Skip to content

Commit 65e85ee

Browse files
fix(scripts): stop double-generating CHANGELOG on release
Drop the redundant 'bun --bun run changelog:generate &&' prefix from release scripts; bumpx already calls @stacksjs/logsmith internally with the proper from/to tag range, so the standalone pre-step was prepending a duplicate section to CHANGELOG.md on every release. Refs: stacksjs/rpx#2260
1 parent e39c355 commit 65e85ee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"lint:fix": "bunx --bun pickier . --fix",
4646
"changelog": "bunx logsmith --verbose",
4747
"changelog:generate": "bunx logsmith --output CHANGELOG.md",
48-
"release": "bun --bun run changelog:generate && bunx --bun bumpx prompt --recursive",
48+
"release": "bunx --bun bumpx prompt --recursive",
4949
"postinstall": "bunx git-hooks",
5050
"prepublishOnly": "bun run build",
5151
"test": "bun test",

0 commit comments

Comments
 (0)