From 9818e1ad5788906162fca5e62665ac21ef0d9639 Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue, 18 Mar 2025 16:00:15 +0000
Subject: [PATCH] chore: remove unused import
---
quartz/util/ctx.ts | 9 +++++++--
1 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/quartz/util/ctx.ts b/quartz/util/ctx.ts
index e056114..b3e7a37 100644
--- a/quartz/util/ctx.ts
+++ b/quartz/util/ctx.ts
@@ -1,12 +1,12 @@
import { QuartzConfig } from "../cfg"
-import { FullSlug } from "./path"
+import { FilePath, FullSlug } from "./path"
export interface Argv {
directory: string
verbose: boolean
output: string
serve: boolean
- fastRebuild: boolean
+ watch: boolean
port: number
wsPort: number
remoteDevHost?: string
@@ -14,7 +14,12 @@
}
export interface BuildCtx {
+ buildId: string
argv: Argv
cfg: QuartzConfig
allSlugs: FullSlug[]
+ allFiles: FilePath[]
+ incremental: boolean
}
+
+export type WorkerSerializableBuildCtx = Omit<BuildCtx, "cfg">
--
Gitblit v1.10.0