From 37e7994d552e6397d6405b31deb625050570af64 Mon Sep 17 00:00:00 2001 From: filtered <176114999+webfiltered@users.noreply.github.com> Date: Sun, 17 Nov 2024 01:39:27 +1100 Subject: [PATCH] Fix husky pre-commit for winnt clients [skip ci] (#1564) --- .husky/pre-commit | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.husky/pre-commit b/.husky/pre-commit index 399367d73..5af23fe84 100644 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,6 +1,7 @@ if [[ "$OS" == "Windows_NT" ]]; then npx.cmd lint-staged + npm.cmd run typecheck else npx lint-staged + npm run typecheck fi -npm run typecheck