Skip to content

Commit

Permalink
back to red
Browse files Browse the repository at this point in the history
  • Loading branch information
fdodino committed Nov 6, 2023
1 parent aa6f90f commit a52f71c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/utils.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { blue, bold, green, italic, red, redBright, yellowBright } from 'chalk'
import { blue, bold, green, italic, red, yellowBright } from 'chalk'
import fs, { Dirent } from 'fs'
import { readFile } from 'fs/promises'
import globby from 'globby'
Expand Down Expand Up @@ -66,8 +66,8 @@ export const validateEnvironment = (environment: Environment, skipValidations: b
}

export const handleError = (error: any): void => {
logger.error(redBright('💥 Uh-oh... Unexpected Error!'))
logger.error(redBright(error.message))
logger.error(red(bold('💥 Uh-oh... Unexpected Error!')))
logger.error(red(error.message))
logger.debug(failureDescription('ℹ️ Stack trace:', error))

Check warning on line 71 in src/utils.ts

View check run for this annotation

Codecov / codecov/patch

src/utils.ts#L69-L71

Added lines #L69 - L71 were not covered by tests
}

Expand Down

0 comments on commit a52f71c

Please sign in to comment.