-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathturbo.json
34 lines (34 loc) · 881 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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"globalEnv": ["GITHUB_TOKEN"],
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "build/**", "dist/**", "out/**", "app/**", "renderer/.next/**", "recover.spec"],
"env": [
"NODE_ENV",
"ELECTRON_BUILDER_ALLOW_UNRESOLVED_DEPENDENCIES",
"APPLE_ID",
"APPLE_ID_PASSWORD",
"APPLE_TEAM_ID",
"APPLE_API_KEY",
"APPLE_API_KEY_ID",
"APPLE_API_KEY_ISSUER",
"APPLE_KEYCHAIN",
"APPLE_KEYCHAIN_PROFILE",
"CSC_LINK",
"CSC_KEY_PASSWORD"
]
},
"dev": {
"dependsOn": ["^dev"],
"cache": false
},
"test": {},
"lint": {},
"format": {
"inputs": ["*.tsx", "*.ts", "*.js", "*.json", "*.py", "*.yml", "*.md"]
}
}
}