mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
Fix type problems
This commit is contained in:
parent
f637508fd2
commit
d2a6b08abd
@ -35,7 +35,7 @@ export const autodocsTrue: Fix<AutodocsTrueFrameworkRunOptions> = {
|
||||
const docs = main.getFieldValue(['docs']);
|
||||
|
||||
const docsPageToAutodocsMapping = {
|
||||
true: 'tag',
|
||||
true: 'tag' as const,
|
||||
automatic: true,
|
||||
false: false,
|
||||
};
|
||||
@ -53,9 +53,7 @@ export const autodocsTrue: Fix<AutodocsTrueFrameworkRunOptions> = {
|
||||
},
|
||||
|
||||
prompt({ value }) {
|
||||
const autodocsFormatted = chalk.cyan(
|
||||
`docs: { autodocs: ${JSON.stringify(value ?? true)} }`
|
||||
);
|
||||
const autodocsFormatted = chalk.cyan(`docs: { autodocs: ${JSON.stringify(value ?? true)} }`);
|
||||
|
||||
if (value) {
|
||||
return dedent`
|
||||
@ -84,7 +82,7 @@ export const autodocsTrue: Fix<AutodocsTrueFrameworkRunOptions> = {
|
||||
we defaulted to having a autodocs for every story, in 7.x you need to opt in per-component.
|
||||
However, we can set the \`docs.autodocs\` to true to approximate the old behaviour:
|
||||
|
||||
${AutodocsTrueFormatted}
|
||||
${autodocsFormatted}
|
||||
|
||||
More info: ${chalk.yellow(
|
||||
'https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#autodocs'
|
||||
|
Loading…
x
Reference in New Issue
Block a user