From 95edda0ebc4c1087c0c744d69f480742cedf2f51 Mon Sep 17 00:00:00 2001 From: Florian <45694132+flo-bit@users.noreply.github.com> Date: Fri, 21 Aug 2026 11:09:32 +0200 Subject: [PATCH] Scope test build dependency to Contrail --- packages/contrail/turbo.json | 9 +++++++++ turbo.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 packages/contrail/turbo.json diff --git a/packages/contrail/turbo.json b/packages/contrail/turbo.json new file mode 100644 index 0000000..8649e73 --- /dev/null +++ b/packages/contrail/turbo.json @@ -0,0 +1,9 @@ +{ + "$schema": "https://turbo.build/schema.json", + "extends": ["//"], + "tasks": { + "test": { + "dependsOn": ["^build", "build"] + } + } +} diff --git a/turbo.json b/turbo.json index 2279a64..94b9292 100644 --- a/turbo.json +++ b/turbo.json @@ -10,7 +10,7 @@ "dependsOn": ["^build"] }, "test": { - "dependsOn": ["^build", "build"], + "dependsOn": ["^build"], "outputs": [] }, "dev": { -- 2.51.2