generated from storybookjs/addon-kit
-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #278 from storybookjs/valentin/throw-error-on-unde…
…fined-stories-config Update getStorybookMain to throw an error if stories are not found in main.js
- Loading branch information
Showing
3 changed files
with
59 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`getStorybookMain no stories should throw an error if no stories are defined 1`] = ` | ||
"Could not find stories in main.js in .storybook. | ||
If you are using a mono-repository, please run the test-runner only against your sub-package, which contains a .storybook folder with \\"stories\\" defined in main.js. | ||
You can change the config directory by using --config-dir <path-to-dir>" | ||
`; | ||
exports[`getStorybookMain no stories should throw an error if stories list is empty 1`] = ` | ||
"Could not find stories in main.js in .storybook. | ||
If you are using a mono-repository, please run the test-runner only against your sub-package, which contains a .storybook folder with \\"stories\\" defined in main.js. | ||
You can change the config directory by using --config-dir <path-to-dir>" | ||
`; | ||
exports[`getStorybookMain should throw an error if no configuration is found 1`] = `"Could not load main.js in .storybook. Is the config directory correct? You can change it by using --config-dir <path-to-dir>"`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,38 @@ | ||
import { join, resolve } from 'path'; | ||
import { serverRequire } from '@storybook/core-common'; | ||
import type { StorybookConfig } from '@storybook/types'; | ||
import dedent from 'ts-dedent'; | ||
|
||
let storybookMainConfig: StorybookConfig; | ||
let storybookMainConfig = new Map<string, StorybookConfig>(); | ||
|
||
export const getStorybookMain = (configDir: string) => { | ||
if (storybookMainConfig) { | ||
return storybookMainConfig; | ||
if (storybookMainConfig.has(configDir)) { | ||
return storybookMainConfig.get(configDir); | ||
} else { | ||
storybookMainConfig.set(configDir, serverRequire(join(resolve(configDir), 'main'))); | ||
} | ||
|
||
storybookMainConfig = serverRequire(join(resolve(configDir), 'main')); | ||
if (!storybookMainConfig) { | ||
const mainConfig = storybookMainConfig.get(configDir); | ||
|
||
if (!mainConfig) { | ||
throw new Error( | ||
`Could not load main.js in ${configDir}. Is the config directory correct? You can change it by using --config-dir <path-to-dir>` | ||
); | ||
} | ||
|
||
return storybookMainConfig; | ||
if (!mainConfig.stories || mainConfig.stories.length === 0) { | ||
throw new Error( | ||
dedent` | ||
Could not find stories in main.js in ${configDir}. | ||
If you are using a mono-repository, please run the test-runner only against your sub-package, which contains a .storybook folder with "stories" defined in main.js. | ||
You can change the config directory by using --config-dir <path-to-dir> | ||
` | ||
); | ||
} | ||
|
||
return mainConfig; | ||
}; | ||
|
||
export function resetStorybookMainCache() { | ||
storybookMainConfig.clear(); | ||
} |