Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
00285c9250 | ||
|
|
e24b6f84fd |
@@ -1,3 +1,10 @@
|
|||||||
|
# [4.30.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.29.7...v4.30.0) (2025-07-15)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* installer is now VERY clear about IDE selection being a multiselect ([e24b6f8](https://github.com/bmadcode/BMAD-METHOD/commit/e24b6f84fd9e4ff4b99263019b5021ca2b145b2f))
|
||||||
|
|
||||||
## [4.29.7](https://github.com/bmadcode/BMAD-METHOD/compare/v4.29.6...v4.29.7) (2025-07-14)
|
## [4.29.7](https://github.com/bmadcode/BMAD-METHOD/compare/v4.29.6...v4.29.7) (2025-07-14)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "bmad-method",
|
"name": "bmad-method",
|
||||||
"version": "4.29.7",
|
"version": "4.30.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "bmad-method",
|
"name": "bmad-method",
|
||||||
"version": "4.29.7",
|
"version": "4.30.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@kayvan/markdown-tree-parser": "^1.5.0",
|
"@kayvan/markdown-tree-parser": "^1.5.0",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "bmad-method",
|
"name": "bmad-method",
|
||||||
"version": "4.29.7",
|
"version": "4.30.0",
|
||||||
"description": "Breakthrough Method of Agile AI-driven Development",
|
"description": "Breakthrough Method of Agile AI-driven Development",
|
||||||
"main": "tools/cli.js",
|
"main": "tools/cli.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
|
|||||||
@@ -277,23 +277,55 @@ async function promptInstallation() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Ask for IDE configuration
|
// Ask for IDE configuration
|
||||||
const { ides } = await inquirer.prompt([
|
let ides = [];
|
||||||
{
|
let ideSelectionComplete = false;
|
||||||
type: 'checkbox',
|
|
||||||
name: 'ides',
|
while (!ideSelectionComplete) {
|
||||||
message: 'Which IDE(s) are you using? (press Enter to skip IDE setup, or select any to configure):',
|
console.log(chalk.cyan('\n🛠️ IDE Configuration'));
|
||||||
choices: [
|
console.log(chalk.bold.yellow.bgRed(' ⚠️ IMPORTANT: This is a MULTISELECT! Use SPACEBAR to toggle each IDE! '));
|
||||||
{ name: 'Cursor', value: 'cursor' },
|
console.log(chalk.bold.magenta('🔸 Use arrow keys to navigate'));
|
||||||
{ name: 'Claude Code', value: 'claude-code' },
|
console.log(chalk.bold.magenta('🔸 Use SPACEBAR to select/deselect IDEs'));
|
||||||
{ name: 'Windsurf', value: 'windsurf' },
|
console.log(chalk.bold.magenta('🔸 Press ENTER when finished selecting\n'));
|
||||||
{ name: 'Trae', value: 'trae' }, // { name: 'Trae', value: 'trae'}
|
|
||||||
{ name: 'Roo Code', value: 'roo' },
|
const ideResponse = await inquirer.prompt([
|
||||||
{ name: 'Cline', value: 'cline' },
|
{
|
||||||
{ name: 'Gemini CLI', value: 'gemini' },
|
type: 'checkbox',
|
||||||
{ name: 'Github Copilot', value: 'github-copilot' }
|
name: 'ides',
|
||||||
]
|
message: 'Which IDE(s) do you want to configure? (Select with SPACEBAR, confirm with ENTER):',
|
||||||
|
choices: [
|
||||||
|
{ name: 'Cursor', value: 'cursor' },
|
||||||
|
{ name: 'Claude Code', value: 'claude-code' },
|
||||||
|
{ name: 'Windsurf', value: 'windsurf' },
|
||||||
|
{ name: 'Trae', value: 'trae' }, // { name: 'Trae', value: 'trae'}
|
||||||
|
{ name: 'Roo Code', value: 'roo' },
|
||||||
|
{ name: 'Cline', value: 'cline' },
|
||||||
|
{ name: 'Gemini CLI', value: 'gemini' },
|
||||||
|
{ name: 'Github Copilot', value: 'github-copilot' }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]);
|
||||||
|
|
||||||
|
ides = ideResponse.ides;
|
||||||
|
|
||||||
|
// Confirm no IDE selection if none selected
|
||||||
|
if (ides.length === 0) {
|
||||||
|
const { confirmNoIde } = await inquirer.prompt([
|
||||||
|
{
|
||||||
|
type: 'confirm',
|
||||||
|
name: 'confirmNoIde',
|
||||||
|
message: chalk.red('⚠️ You have NOT selected any IDEs. This means NO IDE integration will be set up. Is this correct?'),
|
||||||
|
default: false
|
||||||
|
}
|
||||||
|
]);
|
||||||
|
|
||||||
|
if (!confirmNoIde) {
|
||||||
|
console.log(chalk.bold.red('\n🔄 Returning to IDE selection. Remember to use SPACEBAR to select IDEs!\n'));
|
||||||
|
continue; // Go back to IDE selection only
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]);
|
|
||||||
|
ideSelectionComplete = true;
|
||||||
|
}
|
||||||
|
|
||||||
// Use selected IDEs directly
|
// Use selected IDEs directly
|
||||||
answers.ides = ides;
|
answers.ides = ides;
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "bmad-method",
|
"name": "bmad-method",
|
||||||
"version": "4.29.7",
|
"version": "4.30.0",
|
||||||
"description": "BMad Method installer - AI-powered Agile development framework",
|
"description": "BMad Method installer - AI-powered Agile development framework",
|
||||||
"main": "lib/installer.js",
|
"main": "lib/installer.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
|
|||||||
Reference in New Issue
Block a user