summaryrefslogtreecommitdiff
path: root/turbo.json
diff options
context:
space:
mode:
authorJosh Kingsley <josh@joshkingsley.me>2025-11-24 15:46:22 +0200
committerJosh Kingsley <josh@joshkingsley.me>2025-11-24 15:46:22 +0200
commitd724cc0bf6ff6d351319e6fb00f5184a04e16ac0 (patch)
treecb43253479df5db8f4844e17e68a48ea5a212df4 /turbo.json
parent7c966e105cd9f65853de1aba0ecce63aa56aca0b (diff)
chore: improve dev tasks
Diffstat (limited to 'turbo.json')
-rw-r--r--turbo.json13
1 files changed, 11 insertions, 2 deletions
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
}
}
}