From 2b768233961c4e876b33fd11026c3c7d83661f3e Mon Sep 17 00:00:00 2001 From: Dominik Ferber Date: Fri, 24 Nov 2023 09:34:26 +0200 Subject: [PATCH 1/2] remove unnecessary build steps --- turbo.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/turbo.json b/turbo.json index 7a99a718e..5024def1f 100644 --- a/turbo.json +++ b/turbo.json @@ -6,16 +6,16 @@ "outputs": [".next/**", "!.next/cache/**", "dist/**"] }, "lint": { - "dependsOn": ["^build", "build"] + "dependsOn": ["^build"] }, "type-check": { - "dependsOn": ["^build", "build"] + "dependsOn": ["^build"] }, "test": { - "dependsOn": ["^build", "build"] + "dependsOn": ["^build"] }, "publint": { - "dependsOn": ["^build", "build"] + "dependsOn": ["^build"] }, "prettier-check": {}, "integration-test": { From 457cf35cf8bc13c5f13bfac50dcc1a0a37167613 Mon Sep 17 00:00:00 2001 From: Dominik Ferber Date: Fri, 24 Nov 2023 09:38:48 +0200 Subject: [PATCH 2/2] bring back build for publint --- turbo.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/turbo.json b/turbo.json index 5024def1f..9facff28a 100644 --- a/turbo.json +++ b/turbo.json @@ -15,7 +15,7 @@ "dependsOn": ["^build"] }, "publint": { - "dependsOn": ["^build"] + "dependsOn": ["^build", "build"] }, "prettier-check": {}, "integration-test": {