Merge pull request #17544 from storybookjs/fix/docs-preset-babel-handling

Addon-docs: Fix preset handling for builder with options
This commit is contained in:
Michael Shilman 2022-02-22 20:38:44 +08:00 committed by GitHub
commit 529daacf90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -44,8 +44,8 @@ export async function webpack(
const builderName = typeof builder === 'string' ? builder : builder.name;
const resolvedBabelLoader = require.resolve('babel-loader', {
paths: builderName.match(/(webpack4|webpack5)/)
? [require.resolve(`@storybook/builder-${builder}`)]
paths: builderName.match(/^webpack(4|5)$/)
? [require.resolve(`@storybook/builder-${builderName}`)]
: [builderName],
});

View File

@ -22,7 +22,7 @@ const config: StorybookConfig = {
},
},
core: {
builder: 'webpack4',
builder: { name: 'webpack4' },
channelOptions: { allowFunction: false, maxDepth: 10 },
},
features: {