Skip to content

Commit

Permalink
fix: turbo dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mathhulk committed Oct 23, 2024
1 parent 1611806 commit f0d5acb
Showing 1 changed file with 7 additions and 17 deletions.
24 changes: 7 additions & 17 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,26 @@
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [
".env"
],
"globalDependencies": [".env"],
"ui": "stream",
"tasks": {
"build": {
"dependsOn": [
"generate",
"^build"
],
"outputs": [
"dist/**"
]
"dependsOn": ["generate", "^build"],
"outputs": ["dist/**"]
},
"course": {
"cache": false
},
"generate": {
"outputs": [
"generated-types/**"
]
"outputs": ["generated-types/**"]
},
"lint": {},
"start": {
"dependsOn": [
"generate"
]
"dependsOn": ["generate"]
},
"dev": {
"cache": false,
"persistent": true
"persistent": true,
"dependsOn": ["^build"]
}
}
}

0 comments on commit f0d5acb

Please sign in to comment.