{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"]
},
"web#build": {
"dependsOn": ["db:migrate", "^build"],
...
},
"api#build": {
"dependsOn": ["db:migrate", "^build"],
...
},
"db:migrate": {
"dependsOn": ["^db:migrate"],
"cache": false
},
...
}
}
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"]
},
"web#build": {
"dependsOn": ["db:migrate", "^build"],
...
},
"api#build": {
"dependsOn": ["db:migrate", "^build"],
...
},
"db:migrate": {
"dependsOn": ["^db:migrate"],
"cache": false
},
...
}
}