From c7065100493293a90d70e929269e3f6ac963c66b Mon Sep 17 00:00:00 2001 From: Vladimir Reznichenko Date: Thu, 4 Jul 2024 17:45:09 +0200 Subject: [PATCH] Monorepo: update git postmerge hook. (#49130) This PR updates the post-merge git hook, which executes pnpm install (now with --frozen-lockfile flag) in order to speed it up. See https://pnpm.io/cli/install#--frozen-lockfile for details. --- .husky/post-merge | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.husky/post-merge b/.husky/post-merge index 1fd4a5b5941..78cf5a81e57 100755 --- a/.husky/post-merge +++ b/.husky/post-merge @@ -1,4 +1,4 @@ #!/bin/sh . "$(dirname "$0")/_/husky.sh" -pnpm install +pnpm install --frozen-lockfile