Skip to content

Commit

Permalink
chore: Fix missing deps in turbo root tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
Sidnioulz committed Aug 23, 2024
1 parent e538cf1 commit 638adba
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,33 @@
"cache": false,
"persistent": true
},
"lint": {},
"lint:fix": {},
"lint": {
"dependsOn": [
"^lint"
]
},
"lint:fix": {
"dependsOn": [
"lint",
"^lint"
]
},
"test": {
"outputs": [
"coverage/**"
],
"dependsOn": []
"dependsOn": [
"^test"
]
},
"test:dev": {
"outputs": [
"coverage/**"
],
"dependsOn": []
"dependsOn": [
"test",
"^test"
]
},
"typecheck": {
"dependsOn": [
Expand Down

0 comments on commit 638adba

Please sign in to comment.