From 544734e9a77c2eddce6e64ea84435547fb4fe521 Mon Sep 17 00:00:00 2001 From: Yam Borodetsky Date: Sat, 30 Mar 2024 19:29:24 +0500 Subject: [PATCH] fix: remove firebase preDeploy in favor of turbo task graph --- firebase.json | 1 - turbo.json | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/firebase.json b/firebase.json index a49b8f5..231f263 100644 --- a/firebase.json +++ b/firebase.json @@ -2,7 +2,6 @@ "functions": [ { "source": "apps/api", - "predeploy": ["pnpm --filter api lint", "pnpm --filter api build"], "codebase": "default", "ignore": [ "node_modules", diff --git a/turbo.json b/turbo.json index 2a12407..71348b6 100644 --- a/turbo.json +++ b/turbo.json @@ -1,7 +1,7 @@ { "pipeline": { "build": { - "dependsOn": ["^build"], + "dependsOn": ["^build", "lint"], "outputs": ["dist/**"] }, "deploy": {