Skip to content

Commit

Permalink
chore(turbo): update task dependencies and outputs in turbo.json
Browse files Browse the repository at this point in the history
  • Loading branch information
matyson committed Jan 21, 2025
1 parent 7926402 commit 0759444
Showing 1 changed file with 21 additions and 4 deletions.
25 changes: 21 additions & 4 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,33 @@
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"ui": "tui",
"tasks": {
"topo": {
"dependsOn": ["^topo"]
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
"outputs": [
"dist/**",
".next/**",
"!.next/cache/**",
".cache/tsbuildinfo.json",
"dist/**"
]
},
"lint": {
"dependsOn": ["^topo", "^build"],
"outputs": [".cache/.eslintcache"]
},
"type-check": {
"dependsOn": ["^topo", "^build"],
"outputs": [".cache/tsbuildinfo.json"]
},
"lint": {},
"type-check": {},
"dev": {
"dependsOn": ["^dev"],
"cache": false,
"persistent": true
"persistent": false
},
"start": {
"cache": false,
Expand Down

0 comments on commit 0759444

Please sign in to comment.