From 00865e9e2550125080aad6d90f73b553bdd62ffd Mon Sep 17 00:00:00 2001 From: jk Date: Fri, 13 Mar 2026 20:40:08 +0100 Subject: [PATCH] fix: replace 'grey' with 'gray' in styleText call for Node.js compatibility --- src/utils/logger.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/logger.ts b/src/utils/logger.ts index bc52ea8..69ce115 100644 --- a/src/utils/logger.ts +++ b/src/utils/logger.ts @@ -25,7 +25,7 @@ const SYMBOLS = { TIP: styleText("blue", "→"), ERROR: styleText("bgRed", " ERROR "), WARN: styleText("bgYellow", " WARN "), - DEBUG: styleText("grey", "⚙"), + DEBUG: styleText("gray", "⚙"), NONE: "", };