From 919090e216df24e8fe7ad4d08aac904a046a66bf Mon Sep 17 00:00:00 2001 From: Peter Baker Date: Thu, 15 Aug 2024 12:57:28 +1000 Subject: [PATCH] Adding cache false to clean task Signed-off-by: Peter Baker --- turbo.json | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/turbo.json b/turbo.json index 78fe29ba7..ead77d824 100644 --- a/turbo.json +++ b/turbo.json @@ -1,12 +1,19 @@ { - "$schema": "https://turbo.build/schema.json", - "tasks": { - "lint": {}, - "fix": {}, - "clean": {}, - "build": { - "dependsOn": ["^build"], - "outputs": ["build", "dist"] + "$schema": "https://turbo.build/schema.json", + "tasks": { + "lint": {}, + "fix": {}, + "clean": { + "cache": false + }, + "build": { + "dependsOn": [ + "^build" + ], + "outputs": [ + "build", + "dist" + ] + } } - } } \ No newline at end of file