(filePath, label)
| 144 | } |
| 145 | |
| 146 | async function assertReadable(filePath, label) { |
| 147 | try { |
| 148 | await fs.access(filePath); |
| 149 | } catch { |
| 150 | throw new Error(`${label} '${filePath}' does not exist`); |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | function buildVectorizeConfig(options, command) { |
| 155 | const hasCustomConfig = [ |
no outgoing calls
no test coverage detected
searching dependent graphs…