From 692bee28ac50e6a37078d6a22d3ab3ab65fd7720 Mon Sep 17 00:00:00 2001 From: LekoArts Date: Wed, 1 Feb 2023 11:23:14 +0100 Subject: [PATCH] fix: Bad prettier change --- packages/gatsby-cli/src/reporter/reporter.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/gatsby-cli/src/reporter/reporter.ts b/packages/gatsby-cli/src/reporter/reporter.ts index 76ba54988cb4f..d036c503b27f5 100644 --- a/packages/gatsby-cli/src/reporter/reporter.ts +++ b/packages/gatsby-cli/src/reporter/reporter.ts @@ -39,7 +39,8 @@ export interface IActivityArgs { tags?: { [key: string]: any } } -const isVerbose = isTruthy(process.env.GATSBY_REPORTER_ISVERBOSE) +// eslint-disable-next-line prefer-const +let isVerbose = isTruthy(process.env.GATSBY_REPORTER_ISVERBOSE) function isLogIntentMessage(msg: any): msg is ILogIntent { return msg && msg.type === `LOG_INTENT`