summaryrefslogtreecommitdiff
path: root/turbo.json
diff options
context:
space:
mode:
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
}
}
}