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
45 lines (45 loc) · 790 Bytes
/
turbo.json
File metadata and controls
45 lines (45 loc) · 790 Bytes
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
{
"$schema": "http://turbo.build/schema.json",
"remoteCache": {
"signature": true
},
"globalEnv": ["CI_OS", "NODE_VERSION"],
"globalPassThroughEnv": ["NODE_EXTRA_CA_CERTS", "CI"],
"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
}
}
}