MCPcopy Create free account
hub / github.com/ProNextJS/declarative-routing / checkForFinishedProcessing

Function checkForFinishedProcessing

src/shared/watch.ts:17–28  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

15};
16
17const 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
30const isInfoFile = (path: string) => {
31 const config = getConfig();

Callers 2

processFileFunction · 0.85
finishedProcessingFunction · 0.85

Calls 2

updateBuildFilesFunction · 0.90
allCompletedFunction · 0.85

Tested by

no test coverage detected