()
| 15 | }; |
| 16 | |
| 17 | const checkForFinishedProcessing = async () => { |
| 18 | if (allCompleted()) { |
| 19 | if (allFilesProcessed) { |
| 20 | realTime = true; |
| 21 | await updateBuildFiles(); |
| 22 | } |
| 23 | } else { |
| 24 | console.log( |
| 25 | `Waiting for: ${Object.keys(fileMap).filter((k) => !fileMap[k])}` |
| 26 | ); |
| 27 | } |
| 28 | }; |
| 29 | |
| 30 | const isInfoFile = (path: string) => { |
| 31 | const config = getConfig(); |
no test coverage detected