mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:51:17 +08:00
30 lines
686 B
JavaScript
30 lines
686 B
JavaScript
/* eslint-disable global-require */
|
|
import path from 'path';
|
|
import hasDependency from '../hasDependency';
|
|
|
|
function test(options) {
|
|
return (
|
|
options.framework === 'react-native' ||
|
|
(!options.framework && hasDependency('@storybook/react-native'))
|
|
);
|
|
}
|
|
|
|
function load(options) {
|
|
const storybook = require.requireActual('@storybook/react-native');
|
|
|
|
const configPath = path.resolve(options.configPath || 'storybook');
|
|
require.requireActual(configPath);
|
|
|
|
return {
|
|
renderTree: require('../react/renderTree').default,
|
|
renderShallowTree: require('../react/renderShallowTree').default,
|
|
framework: 'rn',
|
|
storybook,
|
|
};
|
|
}
|
|
|
|
export default {
|
|
load,
|
|
test,
|
|
};
|