mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:41:17 +08:00
Fix handling of inverted yes flag in cli steps
This commit is contained in:
parent
3b6d967ad1
commit
0527c6edb6
@ -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' },
|
||||
}),
|
||||
|
@ -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;
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user