mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 08:21:06 +08:00
check context in source-loader
This commit is contained in:
parent
23f8b11bc8
commit
01ca39589b
@ -13,6 +13,14 @@ function sendEvent(
|
|||||||
prefix,
|
prefix,
|
||||||
idsToFrameworks
|
idsToFrameworks
|
||||||
) {
|
) {
|
||||||
|
if (!context || !context.id || !context.kind || !context.story) {
|
||||||
|
console.warn(
|
||||||
|
'@storybook/source-loader was applied to a file which does not contain a story. Please check your webpack configuration and make sure to apply @storybook/source-loader only to files containg stories. Related file:'
|
||||||
|
);
|
||||||
|
console.warn(source);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const channel = addons.getChannel();
|
const channel = addons.getChannel();
|
||||||
const currentLocation = getLocation(context, locationsMap);
|
const currentLocation = getLocation(context, locationsMap);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user