From 9dc4c84cfd7f07e8c844a0a8c909a9bf8452e7b3 Mon Sep 17 00:00:00 2001 From: nicktrn <55853254+nicktrn@users.noreply.github.com> Date: Wed, 26 Jul 2023 13:00:32 +0100 Subject: [PATCH] fix: make husky install compatible with yarn v3 (#10393) --- package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index c138e64639..b1ee82a120 100644 --- a/package.json +++ b/package.json @@ -51,10 +51,9 @@ "lint:fix": "turbo run lint:fix", "lint:report": "turbo run lint:report", "lint": "turbo run lint", - "postinstall": "turbo run post-install", + "postinstall": "husky install && turbo run post-install", "pre-commit": "lint-staged", "predev": "echo 'Checking env files'", - "prepare": "husky install", "prisma": "yarn workspace @calcom/prisma prisma", "start": "turbo run start --scope=\"@calcom/web\"", "tdd": "vitest watch",