From 082cbb74c3b211fb407fd622ddabb6c0864eaa26 Mon Sep 17 00:00:00 2001
From: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 11 Sep 2024 07:29:51 +0000
Subject: [PATCH] chore(deps-dev): bump @types/node from 22.5.0 to 22.5.4 (#1403)
---
quartz/worker.ts | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/quartz/worker.ts b/quartz/worker.ts
index 3bd7ea7..a209df9 100644
--- a/quartz/worker.ts
+++ b/quartz/worker.ts
@@ -2,13 +2,19 @@
sourceMapSupport.install(options)
import cfg from "../quartz.config"
import { Argv, BuildCtx } from "./util/ctx"
-import { FilePath, ServerSlug } from "./util/path"
+import { FilePath, FullSlug } from "./util/path"
import { createFileParser, createProcessor } from "./processors/parse"
import { options } from "./util/sourcemap"
// only called from worker thread
-export async function parseFiles(argv: Argv, fps: FilePath[], allSlugs: ServerSlug[]) {
+export async function parseFiles(
+ buildId: string,
+ argv: Argv,
+ fps: FilePath[],
+ allSlugs: FullSlug[],
+) {
const ctx: BuildCtx = {
+ buildId,
cfg,
argv,
allSlugs,
--
Gitblit v1.10.0