forked from wannabespace/conar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
46 lines (46 loc) · 887 Bytes
/
turbo.json
File metadata and controls
46 lines (46 loc) · 887 Bytes
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
{
"$schema": "./node_modules/turbo/schema.json",
"envMode": "loose",
"tasks": {
"start": {
"persistent": true
},
"check-types": {
"cache": false,
"dependsOn": ["^check-types"]
},
"dev": {
"persistent": true,
"cache": false
},
"build": {
"dependsOn": ["^build"],
"cache": false
},
"build:vite": {
"dependsOn": ["check-types", "^check-types"],
"cache": false
},
"build:electron": {
"dependsOn": ["build:vite"]
},
"@conar/desktop#build": {
"dependsOn": ["^check-types", "build:vite", "build:electron"]
},
"drizzle:migrate": {
"cache": false
},
"drizzle:generate": {
"cache": false
},
"test:unit": {
"cache": false
},
"test:e2e": {
"cache": false
},
"test:start": {
"persistent": true
}
}
}