mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:51:09 +08:00
Merge pull request #17320 from storybookjs/fix-builder-config-object
Addon-docs: Fix `BuilderConfig` can be an object
This commit is contained in:
commit
9f1bf78f55
@ -4,7 +4,7 @@ import remarkExternalLinks from 'remark-external-links';
|
||||
|
||||
// @ts-ignore
|
||||
import { createCompiler } from '@storybook/csf-tools/mdx';
|
||||
import type { Options } from '@storybook/core-common';
|
||||
import type { BuilderConfig, Options } from '@storybook/core-common';
|
||||
|
||||
// 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
|
||||
@ -38,12 +38,15 @@ export async function webpack(
|
||||
typeof createCompiler
|
||||
>[0]
|
||||
) {
|
||||
const { builder = 'webpack4' } = await options.presets.apply<{ builder: any }>('core', {} as any);
|
||||
const { builder = 'webpack4' } = await options.presets.apply<{
|
||||
builder: BuilderConfig;
|
||||
}>('core', {} as any);
|
||||
|
||||
const builderName = typeof builder === 'string' ? builder : builder.name;
|
||||
const resolvedBabelLoader = require.resolve('babel-loader', {
|
||||
paths: builder.match(/(webpack4|webpack5)/)
|
||||
paths: builderName.match(/(webpack4|webpack5)/)
|
||||
? [require.resolve(`@storybook/builder-${builder}`)]
|
||||
: [builder],
|
||||
: [builderName],
|
||||
});
|
||||
|
||||
const { module = {} } = webpackConfig;
|
||||
|
Loading…
x
Reference in New Issue
Block a user