Skip to content

Commit

Permalink
Adding cache false to clean task
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Baker <[email protected]>
  • Loading branch information
PeterBaker0 committed Aug 15, 2024
1 parent c228f5e commit 919090e
Showing 1 changed file with 16 additions and 9 deletions.
25 changes: 16 additions & 9 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"lint": {},
"fix": {},
"clean": {},
"build": {
"dependsOn": ["^build"],
"outputs": ["build", "dist"]
"$schema": "https://turbo.build/schema.json",
"tasks": {
"lint": {},
"fix": {},
"clean": {
"cache": false
},
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"build",
"dist"
]
}
}
}
}

0 comments on commit 919090e

Please sign in to comment.