Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Source-loader: Warn if applied to non-stories file #8773

Merged
merged 3 commits into from Nov 11, 2019
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/source-loader/package.json
Expand Up @@ -29,6 +29,7 @@
},
"dependencies": {
"@storybook/addons": "5.3.0-alpha.42",
"@storybook/node-logger": "5.3.0-alpha.42",
"@storybook/router": "5.3.0-alpha.42",
"core-js": "^3.0.1",
"estraverse": "^4.2.0",
Expand Down
9 changes: 9 additions & 0 deletions lib/source-loader/src/client/preview.js
@@ -1,4 +1,5 @@
import addons from '@storybook/addons';
import { logger } from '@storybook/node-logger';
import { STORY_EVENT_ID } from './events';

const getLocation = (context, locationsMap) => locationsMap[context.id];
Expand All @@ -13,6 +14,14 @@ function sendEvent(
prefix,
idsToFrameworks
) {
if (!context || !context.id || !context.kind || !context.story) {
logger.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:'
);
logger.warn(source);
return;
}

const channel = addons.getChannel();
const currentLocation = getLocation(context, locationsMap);

Expand Down