forked from solana-labs/solana-web3.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
86 lines (86 loc) · 2.67 KB
/
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
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
81
82
83
84
85
86
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"clean": {
"outputs": [".nyc_output/**", "coverage/**", "dist/**", "lib/**"]
},
"compile:docs": {
"dependsOn": ["clean"],
"inputs": ["src/**"],
"outputs": ["doc/**"]
},
"compile:js": {
"dependsOn": ["clean", "^compile:js"],
"inputs": ["rollup.config.js", "tsconfig.*", "tsup.config.js", "src/**"],
"outputs": ["dist/**", "lib/**"]
},
"compile:typedefs": {
"dependsOn": ["clean", "compile:js"],
"inputs": ["rollup.config.types.js", "tsconfig.*", "tsup.config.js", "src/**"],
"outputs": ["declarations/**", "dist/**/*.d.ts", "lib/**/*.d.ts"]
},
"publish-packages": {
"dependsOn": [
"clean",
"compile:docs",
"compile:js",
"compile:typedefs",
"test:coverage",
"test:lint",
"test:prettier",
"test:typecheck",
"test:unit:browser",
"test:unit:node",
"test:live-with-test-validator",
"test:treeshakability:browser",
"test:treeshakability:native",
"test:treeshakability:node"
],
"outputs": ["dist/**", "lib/**"]
},
"test:coverage": {
"dependsOn": ["test:unit:node"],
"inputs": [".nyc_output/**"],
"outputs": ["coverage/**"]
},
"test:lint": {
"inputs": ["src/**", "test/**"],
"outputs": []
},
"test:live-with-test-validator": {
"inputs": ["babel.config.json", "src/**", "test/**"],
"outputs": []
},
"test:prettier": {
"inputs": ["src/**", "test/**"],
"outputs": []
},
"test:typecheck": {
"inputs": ["tsconfig.*", "src/**", "test/**"],
"outputs": []
},
"test:unit:browser": {
"inputs": ["src/**"],
"outputs": []
},
"test:unit:node": {
"inputs": ["babel.config.json", "src/**", "test/**"],
"outputs": []
},
"test:treeshakability:browser": {
"dependsOn": ["compile:js"],
"outputs": []
},
"test:treeshakability:native": {
"dependsOn": ["compile:js"],
"outputs": []
},
"test:treeshakability:node": {
"dependsOn": ["compile:js"],
"outputs": []
}
},
"remoteCache": {
"signature": true
}
}