From 116df609de2d4e5a20140834d878c6bb05772df7 Mon Sep 17 00:00:00 2001 From: Scott McIntyre Date: Fri, 15 Nov 2024 12:25:18 -0500 Subject: [PATCH] fix: add husky label to deprecated warning --- 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)