Addon-docs: Make docs-only stories throw an error on render

This commit is contained in:
Michael Shilman 2019-08-09 18:08:36 +08:00
parent 8bd924db2a
commit 15ba72fd0e

View File

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