forked from solana-labs/solana-web3.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturbo.json
97 lines (97 loc) · 3.03 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
87
88
89
90
91
92
93
94
95
96
97
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": [
"compile:docs",
"compile:js",
"compile:typedefs",
"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/**"]
},
"clean": {
"outputs": ["dist/**", "lib/**"]
},
"compile:docs": {
"dependsOn": ["clean"],
"inputs": ["src/**"],
"outputs": ["doc/**"]
},
"compile:js": {
"dependsOn": ["clean", "^compile:js"],
"inputs": ["rollup.config.js", "tsconfig.*", "src/**"],
"outputs": ["dist/**", "lib/**"]
},
"compile:typedefs": {
"dependsOn": ["clean", "^compile:typedefs"],
"inputs": ["rollup.config.types.js", "tsconfig.*", "src/**"],
"outputs": ["declarations/**", "dist/**/*.d.ts", "lib/**/*.d.ts"]
},
"publish-packages": {
"cache": false,
"dependsOn": ["build", "^publish-packages"],
"outputs": []
},
"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": {
"dependsOn": ["^compile:typedefs"],
"inputs": ["tsconfig.*", "src/**", "test/**"],
"outputs": []
},
"test:unit:browser": {
"dependsOn": ["^compile:js"],
"inputs": ["src/**"],
"outputs": []
},
"test:unit:node": {
"dependsOn": ["^compile:js"],
"inputs": ["src/**"],
"outputs": []
},
"test:treeshakability:browser": {
"dependsOn": ["^compile:js"],
"outputs": []
},
"test:treeshakability:native": {
"dependsOn": ["^compile:js"],
"outputs": []
},
"test:treeshakability:node": {
"dependsOn": ["^compile:js"],
"outputs": []
},
"@solana/web3.js#test:unit:node": {
"dependsOn": ["^compile:js"],
"inputs": ["babel.config.json", "src/**", "test/**"],
"outputs": []
},
"@solana/web3.js-experimental#publish-packages": {
"cache": false,
"dependsOn": ["build", "^publish-packages", "@solana/web3.js#publish-packages"],
"outputs": []
}
},
"remoteCache": {
"signature": true
}
}