-
-
Notifications
You must be signed in to change notification settings - Fork 281
Expand file tree
/
Copy pathturbo.json
More file actions
53 lines (53 loc) · 1.37 KB
/
Copy pathturbo.json
File metadata and controls
53 lines (53 loc) · 1.37 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"$schema": "https://turbo.build/schema.json",
"globalPassThroughEnv": [
"APPLEID",
"APPLEIDPASS",
"APPLETEAMID",
"CSC_LINK",
"CSC_KEY_PASSWORD",
"CSC_INSTALLER_LINK",
"CSC_INSTALLER_KEY_PASSWORD",
"COREPACK_*",
"DEBUG",
"LOCALAPPDATA",
"DOWNLOAD_ALL_ARCHITECTURES",
"NVM_*",
"PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD",
"PNPM_*",
"npm_config_*",
"npm_package_config_node_gyp_*"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
"env": ["CC", "CXX", "DOWNLOAD_ALL_ARCHITECTURES", "NODE_ENV"],
"outputs": ["binaries/**", "dist/**", "static/build/**"]
},
"build:app": {
"dependsOn": ["^build:app"],
"env": ["CC", "CXX", "NODE_ENV"],
"outputs": ["dist/**"]
},
"build:dev": {
"dependsOn": ["^build:dev"],
"env": ["CC", "CXX", "DOWNLOAD_ALL_ARCHITECTURES", "NODE_ENV"],
"outputs": ["binaries/**", "dist/**", "static/build/**"]
},
"build:resources": {
"dependsOn": ["^build:resources"],
"env": ["CC", "CXX", "DOWNLOAD_ALL_ARCHITECTURES", "NODE_ENV"],
"inputs": ["package.json", "**/logo-lens.svg"],
"outputs": ["binaries/**", "static/build/**"]
},
"dev": {
"dependsOn": ["^build:dev"],
"cache": false,
"persistent": true
},
"test:unit": {
"dependsOn": ["build"],
"cache": true
}
}
}