From 3f0ded8e7f52774111f18d5ae5aa0c742bd9bcd2 Mon Sep 17 00:00:00 2001 From: Sadegh Barati Date: Wed, 4 Dec 2024 23:24:33 +0330 Subject: [PATCH] refactor: replace `kleur` with `consola` colors --- packages/cli/src/utils/highlighter.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/cli/src/utils/highlighter.ts b/packages/cli/src/utils/highlighter.ts index febc88cd..8890854b 100644 --- a/packages/cli/src/utils/highlighter.ts +++ b/packages/cli/src/utils/highlighter.ts @@ -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, }