-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathturbo.json
More file actions
80 lines (80 loc) · 1.53 KB
/
Copy pathturbo.json
File metadata and controls
80 lines (80 loc) · 1.53 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"clean": {
"cache": false
},
"build": {
"dependsOn": ["^build"],
"outputs": ["lib/**", "dist/**", "src/version.ts"]
},
"build:cjs": {
"dependsOn": ["^build:cjs"],
"outputs": ["lib/commonjs/**"]
},
"build:esm": {
"dependsOn": ["^build:esm"],
"outputs": ["lib/esm/**"]
},
"build:types": {
"dependsOn": ["^build:types"],
"outputs": ["lib/types/**", "lib/**/*.d.ts"]
},
"build:web": {
"dependsOn": ["build", "^build"],
"outputs": ["dist/**"]
},
"build:web:analyze": {
"dependsOn": ["build:web"],
"outputs": ["dist/**"]
},
"lint": {},
"lint:fix": {
"cache": false
},
"format": {
"cache": false
},
"test": {
"dependsOn": ["build", "^build"]
},
"test:unit": {
"dependsOn": ["build", "^build"]
},
"test:integration": {
"dependsOn": ["build", "^build"]
},
"test:coverage:unit": {
"dependsOn": ["build", "^build"],
"outputs": [".coverage/**"]
},
"test:coverage:integration": {
"dependsOn": ["build", "^build"],
"outputs": [".coverage/**"]
},
"test:e2e:gqrl": {
"cache": false,
"dependsOn": ["build"]
},
"test:e2e:mainnet": {
"cache": false,
"dependsOn": ["build"]
},
"test:e2e:testnet": {
"cache": false,
"dependsOn": ["build"]
},
"test:e2e:electron": {
"cache": false,
"dependsOn": ["build"]
},
"test:e2e:chrome": {
"cache": false,
"dependsOn": ["build"]
},
"test:e2e:firefox": {
"cache": false,
"dependsOn": ["build"]
}
}
}