mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 09:01:07 +08:00
67 lines
1.8 KiB
JavaScript
67 lines
1.8 KiB
JavaScript
const createCompiler = require('../mdx-compiler-plugin');
|
|
|
|
function createBabelOptions({ babelOptions, configureJSX }) {
|
|
if (!configureJSX) {
|
|
return babelOptions;
|
|
}
|
|
|
|
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: [...babelOptions.plugins, '@babel/plugin-transform-react-jsx'],
|
|
};
|
|
}
|
|
|
|
function webpack(webpackConfig = {}, options = {}) {
|
|
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 } = options;
|
|
|
|
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',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
};
|
|
}
|
|
|
|
function addons(entry = []) {
|
|
return [...entry, require.resolve('../register')];
|
|
}
|
|
|
|
module.exports = { webpack, addons };
|