diff --git a/package-lock.json b/package-lock.json index 47f796f..3fdb7cf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "teamcast", - "version": "1.2.0", + "version": "1.2.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "teamcast", - "version": "1.2.0", + "version": "1.2.1", "license": "MIT", "dependencies": { "ajv": "^8.17.1", diff --git a/package.json b/package.json index cf60574..b3499d7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "teamcast", - "version": "1.2.0", + "version": "1.2.1", "description": "YAML-driven CLI to design, validate, and generate multi-target agent teams for Claude Code and Codex", "type": "module", "bin": { diff --git a/src/utils/prompts.ts b/src/utils/prompts.ts index 40913d6..cba6759 100644 --- a/src/utils/prompts.ts +++ b/src/utils/prompts.ts @@ -49,7 +49,7 @@ export async function promptList(options: { }): Promise { const answers = await inquirer.prompt<{ value: T }>([ { - type: 'list', + type: 'select', name: 'value', message: options.message, choices: options.choices,