Skip to content

Commit

Permalink
fix: Bad prettier change
Browse files Browse the repository at this point in the history
  • Loading branch information
LekoArts committed Feb 1, 2023
1 parent b986cd2 commit 692bee2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/gatsby-cli/src/reporter/reporter.ts
Expand Up @@ -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`
Expand Down

0 comments on commit 692bee2

Please sign in to comment.