2024-10-02 17:07:43 +02:00

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;
}