mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:11:07 +08:00
Do a much better and more sensible job of checking if a regexp is going to match
Fixes #16069
This commit is contained in:
parent
c664be60bf
commit
030708fdf4
@ -8,18 +8,20 @@ export function toImportFnPart(entry: NormalizedStoriesEntry) {
|
|||||||
|
|
||||||
const webpackIncludeRegex = new RegExp(regex.source.substring(1));
|
const webpackIncludeRegex = new RegExp(regex.source.substring(1));
|
||||||
|
|
||||||
// NOTE: `base` looks like './src' but `path`, (and what micromatch expects)
|
|
||||||
// is something that starts with `src/`. So to strip off base from path, we
|
|
||||||
// need to drop `base.length - 1` chars.
|
|
||||||
return dedent`
|
return dedent`
|
||||||
async (path) => {
|
async (path) => {
|
||||||
if (!${regex}.exec(path)) {
|
const pathBase = path.substring(0, ${base.length + 1});
|
||||||
|
if (pathBase !== '${base}/') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const pathRemainder = path.substring(${base.length + 1});
|
||||||
|
if (!${regex}.exec(pathRemainder)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const remainder = path.substring(${base.length - 1});
|
|
||||||
return import(
|
return import(
|
||||||
/* webpackInclude: ${webpackIncludeRegex} */
|
/* webpackInclude: ${webpackIncludeRegex} */
|
||||||
'${base}/' + remainder
|
'${base}/' + pathRemainder
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@ async function extractStories(storiesGlobs: string[], configDir: string) {
|
|||||||
stories[id] = {
|
stories[id] = {
|
||||||
title: csf.meta.title,
|
title: csf.meta.title,
|
||||||
name,
|
name,
|
||||||
importPath: relativePath,
|
importPath: relativePath[0] === '.' ? relativePath : `./${relativePath}`,
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user