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 = {
error: red,
warn: yellow,
info: cyan,
success: green,
error: colors.red,
warn: colors.yellow,
info: colors.cyan,
success: colors.green,
}