From 39e6db82b121d78ba34445b1f525928abced818c Mon Sep 17 00:00:00 2001 From: Brian Madison Date: Sun, 15 Jun 2025 14:30:20 -0500 Subject: [PATCH] fix: rollback version from 5.0.0 to 4.3.0 and improve lint-staged config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Reset both package.json files to version 4.3.0 - The v5.0.0 bump was accidental due to BREAKING CHANGE in commit message - Enhanced lint-staged to check all YAML files in project including .bmad-core/ - This ensures husky catches YAML formatting issues before push 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- package.json | 12 +++++++++--- tools/installer/package.json | 2 +- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index fb70756d..e6377f50 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bmad-method", - "version": "5.0.0", + "version": "4.3.0", "description": "Breakthrough Method of Agile AI-driven Development", "main": "tools/cli.js", "bin": { @@ -60,14 +60,20 @@ "yaml-lint": "^1.7.0" }, "lint-staged": { - "*.{yml,yaml}": [ + "**/*.{yml,yaml}": [ "node tools/yaml-format.js" ], - "*.md": [ + "**/*.md": [ "node tools/yaml-format.js" ], ".roomodes": [ "node tools/yaml-format.js" + ], + ".bmad-core/**/*.yml": [ + "node tools/yaml-format.js" + ], + ".github/**/*.yml": [ + "node tools/yaml-format.js" ] } } diff --git a/tools/installer/package.json b/tools/installer/package.json index 58bf65b6..178f8558 100644 --- a/tools/installer/package.json +++ b/tools/installer/package.json @@ -1,6 +1,6 @@ { "name": "bmad-method", - "version": "5.0.0", + "version": "4.3.0", "description": "BMAD Method installer - AI-powered Agile development framework", "main": "lib/installer.js", "bin": {