mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
38 lines
1.0 KiB
JavaScript
38 lines
1.0 KiB
JavaScript
/* eslint-disable global-require,import/no-extraneous-dependencies */
|
|
import path from 'path';
|
|
import runWithRequireContext from '../require_context';
|
|
import hasDependency from '../hasDependency';
|
|
|
|
const babel = require('babel-core');
|
|
|
|
function test(options) {
|
|
return options.framework === 'react' || (!options.framework && hasDependency('@storybook/react'));
|
|
}
|
|
|
|
function load(options) {
|
|
const storybook = require.requireActual('@storybook/react');
|
|
const loadBabelConfig = require('@storybook/react/dist/server/babel_config').default;
|
|
|
|
const configDirPath = path.resolve(options.configPath || '.storybook');
|
|
const configPath = path.join(configDirPath, 'config.js');
|
|
|
|
const babelConfig = loadBabelConfig(configDirPath);
|
|
const content = babel.transformFileSync(configPath, babelConfig).code;
|
|
const contextOpts = {
|
|
filename: configPath,
|
|
dirname: configDirPath,
|
|
};
|
|
|
|
runWithRequireContext(content, contextOpts);
|
|
|
|
return {
|
|
framework: 'react',
|
|
storybook,
|
|
};
|
|
}
|
|
|
|
export default {
|
|
load,
|
|
test,
|
|
};
|