blob: 385119c1e4cb2c98163ca820b8c9d35ec1b14277 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"globalEnv": ["NODE_ENV"],
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
},
"db:migrate:deploy": {},
"db:push": {},
"db:seed": {},
"dev": {
"cache": false,
"persistent": true
},
"generate": {
"dependsOn": ["^generate"]
},
"lint": {}
}
}
|