felia/turbo.json

73 lines
1.2 KiB
JSON
Raw Permalink Normal View History

2022-11-15 17:03:19 +00:00
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
2022-12-02 22:42:02 +00:00
"dependsOn": [
"^build",
"^db-generate"
],
"outputs": [
"dist/**",
".next/**",
".expo/**"
]
2022-11-15 17:03:19 +00:00
},
"lint": {
"outputs": []
},
"dev": {
2022-12-02 22:42:02 +00:00
"dependsOn": [
"^db-generate"
],
2022-11-15 17:03:19 +00:00
"cache": false
},
"dev:local_infra": {
"cache": false
},
2022-12-02 22:42:02 +00:00
"db-generate": {
"inputs": [
"prisma/schema.prisma"
],
"cache": false
},
"db-push": {
"inputs": [
"prisma/schema.prisma"
],
"cache": false
},
"test": {
"outputs": [],
"cache": false
2022-11-15 18:00:28 +00:00
},
2022-12-02 22:42:02 +00:00
"type-check": {
"dependsOn": [
"^db-generate"
],
"cache": false
},
"clean": {
"cache": false
},
"//#clean": {
"cache": false
},
2022-11-15 18:00:28 +00:00
"about-me#build": {
"dependsOn": [
"^build"
],
"env": [
"VERCEL_URL",
"RENDER_INTERNAL_HOSTNAME",
"PORT",
"NODE_ENV",
"DATABASE_URL"
],
2022-12-02 22:42:02 +00:00
"outputs": [
"dist/**",
".next/**"
]
2022-11-15 17:03:19 +00:00
}
}
}