bmad-method 4.35.0 → 4.35.2
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 +14 -2
- package/package.json +1 -1
- package/tools/cli.js +2 -0
- package/tools/installer/lib/installer.js +2 -2
- package/tools/installer/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,21 @@
|
|
|
1
|
-
|
|
1
|
+
## [4.35.2](https://github.com/bmadcode/BMAD-METHOD/compare/v4.35.1...v4.35.2) (2025-08-06)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* npx status check ([f7c2a4f](https://github.com/bmadcode/BMAD-METHOD/commit/f7c2a4fb6c454b17d250b85537129b01ffee6b85))
|
|
2
7
|
|
|
8
|
+
## [4.35.1](https://github.com/bmadcode/BMAD-METHOD/compare/v4.35.0...v4.35.1) (2025-08-06)
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
- npx hanging commands ([2cf322e](https://github.com/bmadcode/BMAD-METHOD/commit/2cf322ee0d9b563a4998c72b2c5eab259594739b))
|
|
13
|
+
|
|
14
|
+
# [4.35.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.34.0...v4.35.0) (2025-08-04)
|
|
3
15
|
|
|
4
16
|
### Features
|
|
5
17
|
|
|
6
|
-
|
|
18
|
+
- add qwen-code ide support to bmad installer. ([#392](https://github.com/bmadcode/BMAD-METHOD/issues/392)) ([a72b790](https://github.com/bmadcode/BMAD-METHOD/commit/a72b790f3be6c77355511ace2d63e6bec4d751f1))
|
|
7
19
|
|
|
8
20
|
# [4.34.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.33.1...v4.34.0) (2025-08-03)
|
|
9
21
|
|
package/package.json
CHANGED
package/tools/cli.js
CHANGED
|
@@ -93,6 +93,7 @@ program
|
|
|
93
93
|
const agents = await builder.resolver.listAgents();
|
|
94
94
|
console.log('Available agents:');
|
|
95
95
|
agents.forEach(agent => console.log(` - ${agent}`));
|
|
96
|
+
process.exit(0);
|
|
96
97
|
});
|
|
97
98
|
|
|
98
99
|
program
|
|
@@ -103,6 +104,7 @@ program
|
|
|
103
104
|
const expansions = await builder.listExpansionPacks();
|
|
104
105
|
console.log('Available expansion packs:');
|
|
105
106
|
expansions.forEach(expansion => console.log(` - ${expansion}`));
|
|
107
|
+
process.exit(0);
|
|
106
108
|
});
|
|
107
109
|
|
|
108
110
|
program
|
|
@@ -1729,7 +1729,7 @@ class Installer {
|
|
|
1729
1729
|
const manifestPath = path.join(bmadDir, "install-manifest.yaml");
|
|
1730
1730
|
|
|
1731
1731
|
if (await fileManager.pathExists(manifestPath)) {
|
|
1732
|
-
return
|
|
1732
|
+
return currentDir; // Return parent directory, not .bmad-core itself
|
|
1733
1733
|
}
|
|
1734
1734
|
|
|
1735
1735
|
currentDir = path.dirname(currentDir);
|
|
@@ -1739,7 +1739,7 @@ class Installer {
|
|
|
1739
1739
|
if (path.basename(process.cwd()) === ".bmad-core") {
|
|
1740
1740
|
const manifestPath = path.join(process.cwd(), "install-manifest.yaml");
|
|
1741
1741
|
if (await fileManager.pathExists(manifestPath)) {
|
|
1742
|
-
return process.cwd();
|
|
1742
|
+
return path.dirname(process.cwd()); // Return parent directory
|
|
1743
1743
|
}
|
|
1744
1744
|
}
|
|
1745
1745
|
|