mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
13 lines
335 B
TypeScript
13 lines
335 B
TypeScript
// eslint-disable-next-line depend/ban-dependencies
|
|
import { pathExists } from 'fs-extra';
|
|
import { join } from 'path';
|
|
|
|
export async function findFirstPath(paths: string[], { cwd }: { cwd: string }) {
|
|
for (const filePath of paths) {
|
|
if (await pathExists(join(cwd, filePath))) {
|
|
return filePath;
|
|
}
|
|
}
|
|
return null;
|
|
}
|