Skip to content

Commit 692bee2

Browse files
committedFeb 1, 2023
fix: Bad prettier change

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎packages/gatsby-cli/src/reporter/reporter.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ export interface IActivityArgs {
3939
tags?: { [key: string]: any }
4040
}
4141

42-
const isVerbose = isTruthy(process.env.GATSBY_REPORTER_ISVERBOSE)
42+
// eslint-disable-next-line prefer-const
43+
let isVerbose = isTruthy(process.env.GATSBY_REPORTER_ISVERBOSE)
4344

4445
function isLogIntentMessage(msg: any): msg is ILogIntent {
4546
return msg && msg.type === `LOG_INTENT`

0 commit comments

Comments
 (0)
Please sign in to comment.