-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathturbo.json
48 lines (48 loc) · 1.38 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",
"tasks": {
"@counterscale/tracker#build": {
"outputs": ["dist/**"]
},
"@counterscale/server#build": {
"dependsOn": ["^build", "@counterscale/server#copytracker"],
"inputs": ["$TURBO_DEFAULT$", ".dev.vars"],
"outputs": ["build/**"]
},
"@counterscale/server#copytracker": {
"dependsOn": ["^@counterscale/tracker#build"],
"outputs": ["public/tracker.js"]
},
"dev": {
"dependsOn": ["^@counterscale/server#copytracker"],
"inputs": ["$TURBO_DEFAULT$", ".dev.vars"],
"cache": false,
"persistent": true
},
"preview": {
"dependsOn": ["build"],
"cache": false,
"persistent": true
},
"deploy": {
"dependsOn": ["build"],
"cache": false
},
"test": {},
"@counterscale/tracker#test": {
"dependsOn": ["@counterscale/tracker#build"]
},
"test-ci": {
"outputs": ["coverage/**"]
},
"@counterscale/tracker#test-ci": {
"dependsOn": ["@counterscale/tracker#build"]
},
"lint": {
"dependsOn": ["build"]
},
"typecheck": {
"dependsOn": ["build"]
}
}
}