dependabot[bot]
2025-05-07 c33f96e572d7fd4e15d24f9f527fc9f39aebbaa7
quartz/processors/parse.ts
@@ -172,7 +172,7 @@
      workerType: "thread",
    })
    const errorHandler = (err: any) => {
      console.error(`${err}`.replace(/^error:\s*/i, ""))
      console.error(err)
      process.exit(1)
    }
@@ -201,7 +201,7 @@
    const markdownToHtmlPromises: WorkerPromise<ProcessedContent[]>[] = []
    processedFiles = 0
    for (const [mdChunk, _] of mdResults) {
    for (const mdChunk of mdResults) {
      markdownToHtmlPromises.push(pool.exec("processHtml", [serializableCtx, mdChunk]))
    }
    const results: ProcessedContent[][] = await Promise.all(