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:
Victor van Poppelen 2020-06-19 23:45:42 -07:00
parent efbf22a260
commit 6f7420531d

View File

@ -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) {