From 909e4961ffb0aa3ff3efa9f04c599c05a17be037 Mon Sep 17 00:00:00 2001 From: Simon Boudrias Date: Mon, 1 Jul 2024 14:28:36 -0400 Subject: [PATCH] Chore(build): Define fix-ext script as a dependency of tsc turbo task --- turbo.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/turbo.json b/turbo.json index 152e1cb81..11083a1d3 100644 --- a/turbo.json +++ b/turbo.json @@ -3,7 +3,8 @@ "tasks": { "tsc": { "dependsOn": ["^tsc"], - "outputs": ["dist/**"] + "outputs": ["dist/**"], + "inputs": ["$TURBO_DEFAULT$", "../../tools/fix-ext.mjs"] }, "attw": { "dependsOn": ["tsc"],