mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
29 lines
785 B
JavaScript
29 lines
785 B
JavaScript
import runWithRequireContext from '../require_context';
|
|
import hasDependency from '../hasDependency';
|
|
import loadConfig from '../config-loader';
|
|
|
|
function test(options) {
|
|
return options.framework === 'react' || (!options.framework && hasDependency('@storybook/react'));
|
|
}
|
|
|
|
function load(options) {
|
|
const { content, contextOpts } = loadConfig({
|
|
configDirPath: options.configPath,
|
|
babelConfigPath: '@storybook/react/dist/server/babel_config',
|
|
});
|
|
|
|
runWithRequireContext(content, contextOpts);
|
|
|
|
return {
|
|
framework: 'react',
|
|
renderTree: require.requireActual('./renderTree').default,
|
|
renderShallowTree: require.requireActual('./renderShallowTree').default,
|
|
storybook: require.requireActual('@storybook/react'),
|
|
};
|
|
}
|
|
|
|
export default {
|
|
load,
|
|
test,
|
|
};
|