chore: ⬆️ Upgrade dependencies

This commit is contained in:
Jesse Wierzbinski 2025-06-15 02:24:56 +02:00
parent 13d43e8e71
commit 4cc6284eb4
No known key found for this signature in database
5 changed files with 179 additions and 175 deletions

View file

@ -20,6 +20,7 @@ const levelAbbreviations: Record<LogLevel, string> = {
warning: "WRN",
error: "ERR",
fatal: "FTL",
trace: "TRC",
};
/**
@ -31,6 +32,7 @@ const logLevelStyles: Record<LogLevel, (text: string) => string> = {
warning: chalk.black.bgYellow,
error: chalk.white.bgRed,
fatal: chalk.white.bgRedBright,
trace: chalk.white.bgBlue,
};
/**