mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
Fix invalid glob warning for absolute paths
When passing absolute paths to the `stories` option (in `main.js`), Storybook will build these stories just fine. However, it displays an erroneous warning on startup asking you if your glob pattern is invalid.
This commit is contained in:
parent
efbf22a260
commit
6f7420531d
@ -58,7 +58,7 @@ export async function createPreviewEntry(options) {
|
||||
entries.push(path.resolve(path.join(configDir, `generated-stories-entry.js`)));
|
||||
|
||||
const files = (
|
||||
await Promise.all(stories.map((g) => glob(path.join(configDir, g))))
|
||||
await Promise.all(stories.map((g) => glob(path.isAbsolute(g) ? g : path.join(configDir, g))))
|
||||
).reduce((a, b) => a.concat(b));
|
||||
|
||||
if (files.length === 0) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user