From 9d7a4615508d4f255bd1889a9799d0fb31a0529b Mon Sep 17 00:00:00 2001 From: Julien Fontanet Date: Fri, 3 Feb 2023 16:17:52 +0100 Subject: [PATCH] feat(turbo): add dev and test tasks --- turbo.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/turbo.json b/turbo.json index 246b8e2ed2..ab06c6b4cc 100644 --- a/turbo.json +++ b/turbo.json @@ -5,6 +5,14 @@ "dependsOn": ["^build"], "outputMode": "errors-only", "outputs": ["dist/**"] + }, + "dev": { + "dependsOn": ["^build"], + "persistent": true + }, + "test": { + "dependsOn": ["build"], + "outputMode": "errors-only" } } }