From d724cc0bf6ff6d351319e6fb00f5184a04e16ac0 Mon Sep 17 00:00:00 2001 From: Josh Kingsley Date: Mon, 24 Nov 2025 15:46:22 +0200 Subject: chore: improve dev tasks --- turbo.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'turbo.json') diff --git a/turbo.json b/turbo.json index d62812e..85a9fd8 100644 --- a/turbo.json +++ b/turbo.json @@ -1,8 +1,12 @@ { "$schema": "https://turborepo.com/schema.json", "tasks": { + "build:dev": { + "dependsOn": ["^build:dev"], + "outputs": ["dist/**"] + }, "dev": { - "dependsOn": ["^build"], + "dependsOn": ["build:dev", "^build:dev"], "cache": false, "persistent": true }, @@ -11,7 +15,12 @@ "persistent": true }, "build": { - "outputs": ["dist/**"] + "dependsOn": ["^build"], + "outputs": ["dist/**"], + "inputs": ["src/**", "Cargo.toml", "Cargo.lock", "package.json"] + }, + "clean": { + "cache": false } } } -- cgit v1.2.3