(cwd: string)
| 141 | }; |
| 142 | |
| 143 | function findConfigPath(cwd: string): ?string { |
| 144 | const parentDir = findParentDirectory(cwd, RN_CLI_CONFIG); |
| 145 | return parentDir ? path.join(parentDir, RN_CLI_CONFIG) : null; |
| 146 | } |
| 147 | |
| 148 | // Finds the most near ancestor starting at `currentFullPath` that has |
| 149 | // a file named `filename` |
no test coverage detected
searching dependent graphs…