From 8d19bc3f4a8f30f8c52c0cd05afd0e8a1063c650 Mon Sep 17 00:00:00 2001
From: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 29 Jul 2025 17:05:01 +0000
Subject: [PATCH] chore(deps): bump sigstore/cosign-installer in the ci-dependencies group (#2057)
---
quartz/build.ts | 9 ++++++---
1 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/quartz/build.ts b/quartz/build.ts
index 9fff1b6..d9f5efc 100644
--- a/quartz/build.ts
+++ b/quartz/build.ts
@@ -251,9 +251,12 @@
// update allFiles and then allSlugs with the consistent view of content map
ctx.allFiles = Array.from(contentMap.keys())
ctx.allSlugs = ctx.allFiles.map((fp) => slugifyFilePath(fp as FilePath))
- const processedFiles = Array.from(contentMap.values())
- .filter((file) => file.type === "markdown")
- .map((file) => file.content)
+ let processedFiles = filterContent(
+ ctx,
+ Array.from(contentMap.values())
+ .filter((file) => file.type === "markdown")
+ .map((file) => file.content),
+ )
let emittedFiles = 0
for (const emitter of cfg.plugins.emitters) {
--
Gitblit v1.10.0