diff --git a/src/commands/init.ts b/src/commands/init.ts index f263c24..990b961 100644 --- a/src/commands/init.ts +++ b/src/commands/init.ts @@ -9,7 +9,7 @@ export const init = async (): Promise => { // collect all necessary data from user const answers = await inquirer - .prompt([ + .prompt([ { type: 'input', name: 'name', @@ -43,6 +43,12 @@ export const init = async (): Promise => { name: 'filePath', message: `The path where your configuration will be stored (if it exists, it will be overwritten)?`, default: `./config.json` + }, + { + type: 'input', + name: 'playbookTimeoutSeconds', + message: `Timeout for checking playbook runs`, + default: `10` } ]);