diff options
| author | Josh Kingsley <josh@joshkingsley.me> | 2025-11-24 15:46:22 +0200 |
|---|---|---|
| committer | Josh Kingsley <josh@joshkingsley.me> | 2025-11-24 15:46:22 +0200 |
| commit | d724cc0bf6ff6d351319e6fb00f5184a04e16ac0 (patch) | |
| tree | cb43253479df5db8f4844e17e68a48ea5a212df4 /turbo.json | |
| parent | 7c966e105cd9f65853de1aba0ecce63aa56aca0b (diff) | |
chore: improve dev tasks
Diffstat (limited to 'turbo.json')
| -rw-r--r-- | turbo.json | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -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 } } } |
