(dir: string, fileName: string)
| 101 | } |
| 102 | |
| 103 | async function findFilePath(dir: string, fileName: string): Promise<string | undefined> { |
| 104 | const result = await findUp([fileName], { cwd: dir }); |
| 105 | |
| 106 | logger.debug("Searched for the file", { |
| 107 | dir, |
| 108 | fileName, |
| 109 | result, |
| 110 | }); |
| 111 | |
| 112 | return result; |
| 113 | } |
| 114 | |
| 115 | export type ReadConfigOptions = { |
| 116 | projectRef?: string; |
no test coverage detected
searching dependent graphs…