From 21d183e661bd4d9c8c8429dad07aa362b598ac25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Omar=20L=C3=B3pez?= Date: Thu, 14 Apr 2022 15:59:00 -0600 Subject: [PATCH] Fixes postinstall scripts (#2492) Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> --- package.json | 1 + turbo.json | 1 + 2 files changed, 2 insertions(+) diff --git a/package.json b/package.json index 650445c57f..3458080ab5 100644 --- a/package.json +++ b/package.json @@ -25,6 +25,7 @@ "heroku-postbuild": "turbo run @calcom/web#build", "lint": "turbo run lint", "lint:report": "turbo run lint:report", + "postinstall": "turbo run postinstall", "pre-commit": "lint-staged", "predev": "dotenv-checker --schema .env.example --env .env", "prepare": "husky install", diff --git a/turbo.json b/turbo.json index 07060b9e06..8943f38740 100644 --- a/turbo.json +++ b/turbo.json @@ -115,6 +115,7 @@ "cache": false, "outputs": ["lint-results"] }, + "postinstall": {}, "start": {}, "test": { "dependsOn": ["^test"]