From 90ff2099a65fb53f808bd33ed9255079f7430c1f Mon Sep 17 00:00:00 2001 From: homer0 Date: Mon, 27 May 2024 01:54:19 +0200 Subject: [PATCH] chore: use pnpm in the hooks --- .husky/pre-commit | 2 +- .husky/pre-push | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.husky/pre-commit b/.husky/pre-commit index 20d0d06..3dd1ddf 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,4 +1,4 @@ #!/bin/sh . "$(dirname "$0")/_/husky.sh" -npm run lint +pnpm run lint diff --git a/.husky/pre-push b/.husky/pre-push index 449fcde..8ef6b5f 100755 --- a/.husky/pre-push +++ b/.husky/pre-push @@ -1,4 +1,4 @@ #!/bin/sh . "$(dirname "$0")/_/husky.sh" -npm test +pnpm test