mirror of
https://github.com/bmadcode/BMAD-METHOD.git
synced 2025-12-17 17:55:34 +00:00
* fix(release): update workflow to sync package-lock.json - Call 'npm version' directly with --no-git-tag-version flag to ensure both package.json and package-lock.json are updated together - Add 'alpha' option (default) for alpha version bumps - Add 'beta' option to transition to/bump beta series - Temporarily disable web bundles (tools/cli/bundlers/ is missing) The workflow was previously calling non-existent npm scripts (version:patch/minor/major) that were removed in the v6 refactor. Note: This change cannot be fully tested without triggering an actual release. The web bundles functionality requires a separate fix. Fixes #1104 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * fix(release): simplify version bump logic Modern npm (v11+) correctly handles --preid flag transitions: - prerelease --preid=beta on alpha.X produces beta.0 (works!) - prerelease --preid=alpha on alpha.X produces alpha.X+1 (works!) CodeRabbit warning was based on outdated npm behavior. Consolidate alpha|beta into single case for cleaner code. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com> Co-authored-by: Brian <bmadcode@gmail.com>