From 6ed5777c6356fa5b82e9827ab59a799ab47c8672 Mon Sep 17 00:00:00 2001 From: Simon Ihmig Date: Fri, 20 Dec 2024 12:47:23 +0100 Subject: [PATCH] Add dev task to turbo config --- turbo.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/turbo.json b/turbo.json index f2a315511..ebb585cd3 100644 --- a/turbo.json +++ b/turbo.json @@ -1,6 +1,12 @@ { "$schema": "https://turborepo.org/schema.json", "tasks": { + "dev": { + "dependsOn": ["^build"], + "outputs": [], + "cache": false, + "persistent": true + }, "start": { "dependsOn": ["^build"], "outputs": [],