Skip to content

Commit bf53b52

Browse files
committed
Updating husky hooks to not use npx due to version conflicts.
1 parent 2dbbd91 commit bf53b52

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.husky/post-merge

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22
. "$(dirname "$0")/_/husky.sh"
33

4-
npx pnpm install -r
4+
pnpm install -r

.husky/pre-push

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22
. "$(dirname "$0")/_/husky.sh"
33

4-
npx pnpm install -r
4+
pnpm install -r
55

66
if ! (git diff HEAD --quiet pnpm-lock.yaml); then
77
echo "modified pnpm-lock.yaml - please commit the file"

0 commit comments

Comments
 (0)