From 30f20490a5448819ef98f5962c99f91523591902 Mon Sep 17 00:00:00 2001 From: Scott McIntyre Date: Mon, 18 Nov 2024 10:26:03 -0500 Subject: [PATCH] fix: add husky label to deprecated warning (#1538) --- bin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin.js b/bin.js index 73ee3eda..244311ba 100755 --- a/bin.js +++ b/bin.js @@ -19,7 +19,7 @@ if (a == 'init') { p.exit() } -d = c => console.error(`${c} command is DEPRECATED`) +d = c => console.error(`husky - ${c} command is DEPRECATED`) if (['add', 'set', 'uninstall'].includes(a)) { d(a); p.exit(1) } if (a == 'install') d(a)