refactor: replace kleur with consola colors

This commit is contained in:
Sadegh Barati 2024-12-04 23:24:33 +03:30
parent b8f60e6883
commit 3f0ded8e7f

View File

@ -1,8 +1,8 @@
import { cyan, green, red, yellow } from 'kleur/colors' import { colors } from 'consola/utils'
export const highlighter = { export const highlighter = {
error: red, error: colors.red,
warn: yellow, warn: colors.yellow,
info: cyan, info: colors.cyan,
success: green, success: colors.green,
} }