Stop caching builds

This commit is contained in:
Korbs 2025-02-20 18:03:04 -05:00
parent eabd4619ed
commit bb5f5910f5
Signed by: Korbs
SSH key fingerprint: SHA256:Q0b0KraMldpAO9oKa+w+gcsXsOTykQ4UkAKn0ByGn5U

View file

@ -2,10 +2,12 @@
"tasks": { "tasks": {
"build": { "build": {
"dependsOn": ["^build"], "dependsOn": ["^build"],
"outputs": ["dist/**"] "outputs": ["dist/**"],
"cache": false
}, },
"watch": { "watch": {
"cache": false "cache": false,
"persistent": true
} }
} }
} }