From 0527c6edb64977fa940e6b7f69912a4a5cf0ada3 Mon Sep 17 00:00:00 2001 From: Valentin Palkovic Date: Wed, 14 Dec 2022 15:12:38 +0100 Subject: [PATCH] Fix handling of inverted yes flag in cli steps --- scripts/utils/cli-step.ts | 2 +- scripts/utils/options.ts | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/utils/cli-step.ts b/scripts/utils/cli-step.ts index 8563a46f287..d51b693c0a7 100644 --- a/scripts/utils/cli-step.ts +++ b/scripts/utils/cli-step.ts @@ -32,7 +32,7 @@ export const steps = { description: 'Initializing Storybook', icon: '⚙️', options: createOptions({ - yes: { type: 'boolean', inverse: true }, + yes: { type: 'boolean' }, type: { type: 'string' }, debug: { type: 'boolean' }, }), diff --git a/scripts/utils/options.ts b/scripts/utils/options.ts index b1a2dea7f0c..3fd36cdd6e4 100644 --- a/scripts/utils/options.ts +++ b/scripts/utils/options.ts @@ -29,7 +29,8 @@ export type BaseOption = { export type BooleanOption = BaseOption & { type: 'boolean'; /** - * Does this option default true? + * If this option is set to true and the option value is false or undefined, the flag `--no-option` will be set. + * If the option value is true, the flag `--no-option` is not set. */ inverse?: boolean; };