mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
Addon-docs: Make docs-only stories throw an error on render
This commit is contained in:
parent
8bd924db2a
commit
15ba72fd0e
@ -208,7 +208,9 @@ function extractExports(node, options) {
|
||||
});
|
||||
if (metaExport) {
|
||||
if (!storyExports.length) {
|
||||
storyExports.push('export const storybookDocsOnly = () => "See docs";');
|
||||
storyExports.push(
|
||||
'export const storybookDocsOnly = () => { throw new Error("Docs-only story"); };'
|
||||
);
|
||||
storyExports.push('storybookDocsOnly.story = { parameters: { docsOnly: true } };');
|
||||
includeStories.push('storybookDocsOnly');
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user