From 23bf21a1b7207c31c26dea103b101a6a4c04ea45 Mon Sep 17 00:00:00 2001 From: Kainoa Kanter Date: Fri, 14 Nov 2025 11:42:48 -0800 Subject: [PATCH] fix: boostrap help options --- npm_modules/cli/src/commands/bootstrap.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/npm_modules/cli/src/commands/bootstrap.ts b/npm_modules/cli/src/commands/bootstrap.ts index c855ccdf..97dcb59b 100644 --- a/npm_modules/cli/src/commands/bootstrap.ts +++ b/npm_modules/cli/src/commands/bootstrap.ts @@ -245,9 +245,9 @@ export const builder = (yargs: Argv) => { type: 'boolean', alias: 'y', }) - .option('applicationType', { describe: 'Type of application to create', alias: 't' }) + .option('applicationType', { describe: 'Type of application to create (ui_application or cli_application)', alias: 't' }) .option('valdiImport', { - describe: 'A full path to a local checkout of the valid repo', + describe: 'A full path to a local checkout of the valdi repo', type: 'string', alias: 'l', })