From d9d919eba4d266c6be126aeed46544123b105aff Mon Sep 17 00:00:00 2001 From: Aliu Salaudeen Date: Mon, 5 Aug 2024 09:41:09 +0100 Subject: [PATCH] done with fixing husky prehook --- .husky/post-merge | 2 +- .husky/pre-commit | 4 ++-- .husky/pre-push | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.husky/post-merge b/.husky/post-merge index f9701db..9bc1399 100755 --- a/.husky/post-merge +++ b/.husky/post-merge @@ -2,4 +2,4 @@ . "$(dirname "$0")/_/husky.sh" . "$(dirname "$0")/common.sh" -npx post-merge-install "yarn install" \ No newline at end of file +npx post-merge-install "pnpm install" \ No newline at end of file diff --git a/.husky/pre-commit b/.husky/pre-commit index f8785ca..8ebc93d 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -2,5 +2,5 @@ . "$(dirname "$0")/_/husky.sh" . "$(dirname "$0")/common.sh" -yarn format -yarn lint +pnpm format +pnpm lint diff --git a/.husky/pre-push b/.husky/pre-push index 4a47071..65bda51 100755 --- a/.husky/pre-push +++ b/.husky/pre-push @@ -2,5 +2,5 @@ . "$(dirname "$0")/_/husky.sh" . "$(dirname "$0")/common.sh" -yarn build -yarn test \ No newline at end of file +pnpm build +pnpm test \ No newline at end of file