bmad-method 4.29.3 → 4.29.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [4.29.4](https://github.com/bmadcode/BMAD-METHOD/compare/v4.29.3...v4.29.4) (2025-07-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* empty .roomodes, support Windows-style newlines in YAML block regex ([#311](https://github.com/bmadcode/BMAD-METHOD/issues/311)) ([551e30b](https://github.com/bmadcode/BMAD-METHOD/commit/551e30b65e1f04386f0bd0193f726828df684d5b))
|
|
7
|
+
|
|
1
8
|
## [4.29.3](https://github.com/bmadcode/BMAD-METHOD/compare/v4.29.2...v4.29.3) (2025-07-13)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -702,7 +702,7 @@ class IdeSetup {
|
|
|
702
702
|
const agentContent = await fileManager.readFile(agentPath);
|
|
703
703
|
|
|
704
704
|
// Extract YAML content
|
|
705
|
-
const yamlMatch = agentContent.match(/```ya?ml\n([\s\S]*?)```/);
|
|
705
|
+
const yamlMatch = agentContent.match(/```ya?ml\r?\n([\s\S]*?)```/);
|
|
706
706
|
if (yamlMatch) {
|
|
707
707
|
const yaml = yamlMatch[1];
|
|
708
708
|
|