bmad-method 4.29.7 → 4.30.0
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 +7 -0
- package/package.json +1 -1
- package/tools/installer/bin/bmad.js +48 -16
- package/tools/installer/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [4.30.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.29.7...v4.30.0) (2025-07-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* installer is now VERY clear about IDE selection being a multiselect ([e24b6f8](https://github.com/bmadcode/BMAD-METHOD/commit/e24b6f84fd9e4ff4b99263019b5021ca2b145b2f))
|
|
7
|
+
|
|
1
8
|
## [4.29.7](https://github.com/bmadcode/BMAD-METHOD/compare/v4.29.6...v4.29.7) (2025-07-14)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -277,23 +277,55 @@ async function promptInstallation() {
|
|
|
277
277
|
}
|
|
278
278
|
|
|
279
279
|
// Ask for IDE configuration
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
280
|
+
let ides = [];
|
|
281
|
+
let ideSelectionComplete = false;
|
|
282
|
+
|
|
283
|
+
while (!ideSelectionComplete) {
|
|
284
|
+
console.log(chalk.cyan('\n🛠️ IDE Configuration'));
|
|
285
|
+
console.log(chalk.bold.yellow.bgRed(' ⚠️ IMPORTANT: This is a MULTISELECT! Use SPACEBAR to toggle each IDE! '));
|
|
286
|
+
console.log(chalk.bold.magenta('🔸 Use arrow keys to navigate'));
|
|
287
|
+
console.log(chalk.bold.magenta('🔸 Use SPACEBAR to select/deselect IDEs'));
|
|
288
|
+
console.log(chalk.bold.magenta('🔸 Press ENTER when finished selecting\n'));
|
|
289
|
+
|
|
290
|
+
const ideResponse = await inquirer.prompt([
|
|
291
|
+
{
|
|
292
|
+
type: 'checkbox',
|
|
293
|
+
name: 'ides',
|
|
294
|
+
message: 'Which IDE(s) do you want to configure? (Select with SPACEBAR, confirm with ENTER):',
|
|
295
|
+
choices: [
|
|
296
|
+
{ name: 'Cursor', value: 'cursor' },
|
|
297
|
+
{ name: 'Claude Code', value: 'claude-code' },
|
|
298
|
+
{ name: 'Windsurf', value: 'windsurf' },
|
|
299
|
+
{ name: 'Trae', value: 'trae' }, // { name: 'Trae', value: 'trae'}
|
|
300
|
+
{ name: 'Roo Code', value: 'roo' },
|
|
301
|
+
{ name: 'Cline', value: 'cline' },
|
|
302
|
+
{ name: 'Gemini CLI', value: 'gemini' },
|
|
303
|
+
{ name: 'Github Copilot', value: 'github-copilot' }
|
|
304
|
+
]
|
|
305
|
+
}
|
|
306
|
+
]);
|
|
307
|
+
|
|
308
|
+
ides = ideResponse.ides;
|
|
309
|
+
|
|
310
|
+
// Confirm no IDE selection if none selected
|
|
311
|
+
if (ides.length === 0) {
|
|
312
|
+
const { confirmNoIde } = await inquirer.prompt([
|
|
313
|
+
{
|
|
314
|
+
type: 'confirm',
|
|
315
|
+
name: 'confirmNoIde',
|
|
316
|
+
message: chalk.red('⚠️ You have NOT selected any IDEs. This means NO IDE integration will be set up. Is this correct?'),
|
|
317
|
+
default: false
|
|
318
|
+
}
|
|
319
|
+
]);
|
|
320
|
+
|
|
321
|
+
if (!confirmNoIde) {
|
|
322
|
+
console.log(chalk.bold.red('\n🔄 Returning to IDE selection. Remember to use SPACEBAR to select IDEs!\n'));
|
|
323
|
+
continue; // Go back to IDE selection only
|
|
324
|
+
}
|
|
295
325
|
}
|
|
296
|
-
|
|
326
|
+
|
|
327
|
+
ideSelectionComplete = true;
|
|
328
|
+
}
|
|
297
329
|
|
|
298
330
|
// Use selected IDEs directly
|
|
299
331
|
answers.ides = ides;
|