From 463b6957ee52dec137dc5f3838886e33492f99ef Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sat, 27 Jan 2024 11:50:09 +0100 Subject: [PATCH] build: log on the console husky warnings MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- prepare.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prepare.js b/prepare.js index 2e8db999..bf54524b 100644 --- a/prepare.js +++ b/prepare.js @@ -4,5 +4,5 @@ const isCIEnvironment = env.CI != null const isCFEnvironment = env.VCAP_APPLICATION != null if (isCFEnvironment === false && isCIEnvironment === false) { // eslint-disable-next-line n/no-unpublished-import - import('husky').then(husky => husky.default()) + import('husky').then(husky => console.warn(husky.default())) } -- 2.34.1