mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:31:06 +08:00
80 lines
2.3 KiB
TypeScript
80 lines
2.3 KiB
TypeScript
/* eslint-disable import/no-extraneous-dependencies */
|
|
import createCompiler from '@storybook/addon-docs/mdx-compiler-plugin';
|
|
|
|
function createBabelOptions(babelOptions?: any, configureJSX?: boolean) {
|
|
if (!configureJSX) {
|
|
return babelOptions;
|
|
}
|
|
|
|
const babelPlugins = (babelOptions && babelOptions.plugins) || [];
|
|
return {
|
|
...babelOptions,
|
|
// for frameworks that are not working with react, we need to configure
|
|
// the jsx to transpile mdx, for now there will be a flag for that
|
|
// for more complex solutions we can find alone that we need to add '@babel/plugin-transform-react-jsx'
|
|
plugins: [...babelPlugins, '@babel/plugin-transform-react-jsx'],
|
|
};
|
|
}
|
|
|
|
export function webpack(webpackConfig: any = {}, options: any = {}) {
|
|
const { module = {} } = webpackConfig;
|
|
// it will reuse babel options that are already in use in storybook
|
|
// also, these babel options are chained with other presets.
|
|
const { babelOptions, configureJSX, sourceLoaderOptions = {} } = options;
|
|
|
|
// set `sourceLoaderOptions` to `null` to disable for manual configuration
|
|
const sourceLoader = sourceLoaderOptions
|
|
? [
|
|
{
|
|
test: /\.(stories|story)\.[tj]sx?$/,
|
|
loader: require.resolve('@storybook/source-loader'),
|
|
options: sourceLoaderOptions,
|
|
enforce: 'pre',
|
|
},
|
|
]
|
|
: [];
|
|
|
|
return {
|
|
...webpackConfig,
|
|
module: {
|
|
...module,
|
|
rules: [
|
|
...(module.rules || []),
|
|
{
|
|
test: /\.(stories|story).mdx$/,
|
|
use: [
|
|
{
|
|
loader: 'babel-loader',
|
|
options: createBabelOptions(babelOptions, configureJSX),
|
|
},
|
|
{
|
|
loader: '@mdx-js/loader',
|
|
options: {
|
|
compilers: [createCompiler(options)],
|
|
},
|
|
},
|
|
],
|
|
},
|
|
{
|
|
test: /\.mdx$/,
|
|
exclude: /\.(stories|story).mdx$/,
|
|
use: [
|
|
{
|
|
loader: 'babel-loader',
|
|
options: createBabelOptions(babelOptions, configureJSX),
|
|
},
|
|
{
|
|
loader: '@mdx-js/loader',
|
|
},
|
|
],
|
|
},
|
|
...sourceLoader,
|
|
],
|
|
},
|
|
};
|
|
}
|
|
|
|
export function addons(entry: any[] = []) {
|
|
return [...entry, require.resolve('../../register')];
|
|
}
|