From 4b86dffcf97b69391f7eff3b65e2d92952a10ede Mon Sep 17 00:00:00 2001 From: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com> Date: Fri, 5 Sep 2025 22:38:16 -0500 Subject: [PATCH] [GitHub] [Bug] Add nullish operator to dryRun check (#6496) --- typedoc.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typedoc.config.js b/typedoc.config.js index 5c49a643a91..1f944cd544e 100644 --- a/typedoc.config.js +++ b/typedoc.config.js @@ -1,6 +1,6 @@ import { globSync } from "node:fs"; -const dryRun = !!process.env.DRY_RUN.match(/true/gi); +const dryRun = !!process.env.DRY_RUN?.match(/true/gi); /** * @type {Partial}