forked from saleor/apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
35 lines (35 loc) · 921 Bytes
/
turbo.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"globalEnv": ["VERCEL_ENV", "APP_LOG_LEVEL", "NODE_ENV", "CI"],
"pipeline": {
"build": {
"env": ["NEXT_PUBLIC_VERCEL_ENV"],
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"]
},
"deploy": {
"env": ["NEXT_PUBLIC_VERCEL_ENV"],
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"]
},
"lint": {
"inputs": ["src"],
"outputs": []
},
"dev": {
"persistent": true,
"cache": false
},
"test": {
"inputs": ["src/**/*.test.ts", "src/**/*.test.tsx", "src/**/*.spec.ts", "src/**/*.spec.tsx"]
},
"test:ci": {
"inputs": ["src/**/*.test.ts", "src/**/*.test.tsx", "src/**/*.spec.ts", "src/**/*.spec.tsx"]
},
"generate": {
"outputs": ["generated/"]
},
"lint:fix": {}
}
}