forked from cloudflare/workers-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
58 lines (58 loc) · 1.01 KB
/
turbo.json
File metadata and controls
58 lines (58 loc) · 1.01 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
54
55
56
57
58
{
"$schema": "http://turbo.build/schema.json",
"remoteCache": {
"signature": true
},
"globalEnv": ["CI_OS", "NODE_VERSION"],
"globalPassThroughEnv": [
"CI",
"CLOUDFLARE_CONTAINER_REGISTRY",
"DOCKER_HOST",
"LOCAL_TESTS_WITHOUT_DOCKER",
"NODE_EXTRA_CA_CERTS",
"PWD",
"TEST_REPORT_PATH",
"VSCODE_INSPECTOR_OPTIONS",
"WRANGLER_API_ENVIRONMENT",
"WRANGLER_DOCKER_HOST",
"WRANGLER_LOG_PATH",
"WRANGLER_LOG"
],
"tasks": {
"dev": {
"persistent": true,
"cache": false
},
"build": {
"dependsOn": ["^build"],
"outputLogs": "new-only"
},
"test": {
"dependsOn": ["build"]
},
"test:watch": {
"persistent": true,
"cache": false
},
"check:lint": {
"dependsOn": ["^check:lint"]
},
"check:type": {
"dependsOn": ["build"]
},
"type:tests": {
"dependsOn": ["build"]
},
"test:ci": {
"dependsOn": ["build"],
"outputLogs": "new-only"
},
"test:e2e": {
"dependsOn": ["build"],
"outputLogs": "new-only"
},
"//#check:format": {
"cache": true
}
}
}