check context in source-loader

This commit is contained in:
Donald Pipowitch 2019-11-09 14:33:43 +01:00
parent 23f8b11bc8
commit 01ca39589b

View File

@ -13,6 +13,14 @@ function sendEvent(
prefix,
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 currentLocation = getLocation(context, locationsMap);