-
Notifications
You must be signed in to change notification settings - Fork 3
/
turbo.json
39 lines (39 loc) · 932 Bytes
/
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
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": ["build:sdks", "build:examples", "build:docs"]
},
"build:sdks": {
"dependsOn": [
"@everfund/js-sdk#build:sdks",
"@everfund/react-sdk#build:sdks"
]
},
"@everfund/js-sdk#build:sdks": {
"outputs": ["dist/**"]
},
"@everfund/react-sdk#build:sdks": {
"dependsOn": ["@everfund/js-sdk#build:sdks"],
"outputs": ["dist/**"]
},
"build:examples": {
"dependsOn": ["build:sdks"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
},
"build:docs": {
"outputs": [".next/**", "!.next/cache/**"]
},
"lint": {
"dependsOn": ["^build"]
},
"test": {
"dependsOn": ["build:sdks"]
},
"dev": {
"outputs": ["dist/**", ".next/**", "!.next/cache/**"],
"cache": false,
"persistent": true
}
}
}