diff options
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 } } } |
