Fix handling of inverted yes flag in cli steps

This commit is contained in:
Valentin Palkovic 2022-12-14 15:12:38 +01:00
parent 3b6d967ad1
commit 0527c6edb6
2 changed files with 3 additions and 2 deletions

View File

@ -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' },
}),

View File

@ -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;
};