-
Notifications
You must be signed in to change notification settings - Fork 2
/
turbo.json
60 lines (60 loc) · 1.52 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
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"build:production": {
"dependsOn": ["^build"],
"outputs": ["build/**"]
},
"build:staging": {
"dependsOn": ["^build"],
"outputs": ["build/**"]
},
"build:standalone": {
"dependsOn": ["^build"],
"outputs": ["build/**"]
},
"build:library": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"build:storybook": {
"dependsOn": ["^build"],
"outputs": ["storybook-static/**"]
},
"test": {
"dependsOn": ["^build"],
"inputs": [
"src/**/*.{ts,tsx}",
"tests/**/*.{ts,tsx}",
"src/**/*.test.{ts,tsx}",
"babel.config.json"
]
},
"test:e2e": {
"inputs": ["src/**/*.{ts,tsx}", "cypress/**/*.{ts,tsx}"],
"dependsOn": ["^build"]
},
"start": {
"dependsOn": ["^build"]
},
"size-limit": {
"dependsOn": ["^build", "build"]
},
"lint": {},
"format": {}
},
"globalEnv": [
"NODE_ENV",
"ENVIRONMENT",
"INFURA_PROJECT_ID",
"WALLETCONNECT_PROJECT_ID",
"FATHOM_SITE_ID",
"FATHOM_API_KEY",
"CI",
"STAGING"
]
}