[GitHub] [Bug] Add nullish operator to dryRun check (#6496)

This commit is contained in:
Sirz Benjie 2025-09-05 22:38:16 -05:00 committed by GitHub
parent 2d037fca96
commit 4b86dffcf9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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<import("typedoc").TypeDocOptions>}