73 lines
1.2 KiB
JSON
73 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": [
|
|
"^build",
|
|
"^db-generate"
|
|
],
|
|
"outputs": [
|
|
"dist/**",
|
|
".next/**",
|
|
".expo/**"
|
|
]
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"dev": {
|
|
"dependsOn": [
|
|
"^db-generate"
|
|
],
|
|
"cache": false
|
|
},
|
|
"dev:local_infra": {
|
|
"cache": false
|
|
},
|
|
"db-generate": {
|
|
"inputs": [
|
|
"prisma/schema.prisma"
|
|
],
|
|
"cache": false
|
|
},
|
|
"db-push": {
|
|
"inputs": [
|
|
"prisma/schema.prisma"
|
|
],
|
|
"cache": false
|
|
},
|
|
"test": {
|
|
"outputs": [],
|
|
"cache": false
|
|
},
|
|
"type-check": {
|
|
"dependsOn": [
|
|
"^db-generate"
|
|
],
|
|
"cache": false
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"//#clean": {
|
|
"cache": false
|
|
},
|
|
"about-me#build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"env": [
|
|
"VERCEL_URL",
|
|
"RENDER_INTERNAL_HOSTNAME",
|
|
"PORT",
|
|
"NODE_ENV",
|
|
"DATABASE_URL"
|
|
],
|
|
"outputs": [
|
|
"dist/**",
|
|
".next/**"
|
|
]
|
|
}
|
|
}
|
|
}
|