storybook/code/presets/react-webpack/src/framework-preset-react-dom-hack.ts
Norbert de Langen c2bbe43d02
stage0
2022-07-21 11:24:07 +02:00

25 lines
957 B
TypeScript

import { readJSON } from 'fs-extra';
import { IgnorePlugin } from 'webpack';
import type { StorybookConfig } from '@storybook/core-webpack';
// this is a hack to allow importing react-dom/client even when it's not available
// this should be removed once we drop support for react-dom < 18
export const webpackFinal: StorybookConfig['webpackFinal'] = async (config) => {
const reactDomPkg = await readJSON(require.resolve('react-dom/package.json'));
return {
...config,
plugins: [
...(config.plugins || []),
reactDomPkg?.version?.startsWith('18') || reactDomPkg?.version?.startsWith('0.0.0')
? null
: new IgnorePlugin({
resourceRegExp: /react-dom\/client$/,
contextRegExp:
/(renderers\/react|renderers\\react|@storybook\/react|@storybook\\react)/, // TODO this needs to work for both in our MONOREPO and in the user's NODE_MODULES
}),
].filter(Boolean),
};
};