-
Notifications
You must be signed in to change notification settings - Fork 1
/
turbo.json
48 lines (48 loc) · 1.06 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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"globalEnv": [
"NODE_ENV",
"GITHUB_ACTION",
"SERVER_PORT",
"VITE_SERVER_PORT",
"MQTT_HOST",
"MQTT_PORT",
"MQTT_ADDRESS",
"npm_package_version"
],
"pipeline": {
"start:dev": {
"cache": false,
"persistent": true,
"dependsOn": ["^build:packages"]
},
"build": {
"outputs": ["lib/**", "dist/**"],
"dependsOn": ["^build"]
},
"build:packages": {
"outputs": ["lib/**", "dist/**"],
"dependsOn": ["^build:shared", "^build:logger"]
},
"build:shared": {
"outputs": ["lib/**", "dist/**"]
},
"build:logger": {
"outputs": ["lib/**", "dist/**"]
},
"build:server": {
"dependsOn": ["^build:packages"],
"outputs": ["lib/**", "dist/**"]
},
"build:front": {
"dependsOn": ["^build:shared"],
"outputs": ["lib/**", "dist/**"]
},
"test:packages": {},
"test:server": {},
"coverage:junit": {},
"test": {},
"lint": {}
}
}