-
Notifications
You must be signed in to change notification settings - Fork 273
/
turbo.json
60 lines (60 loc) · 1.36 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://turborepo.org/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"inputs": ["src/**/*.ts"],
"outputs": ["dist/**", "build/**"]
},
"dev": {
"dependsOn": ["^dev"],
"cache": false,
"persistent": true
},
"build-docs": {
"outputs": ["docs/**/*.json"]
},
"preview-docs": {
"outputs": ["docs/**/*.json"]
},
"lint": {
"outputs": []
},
"typecheck": {
"outputs": [],
"dependsOn": ["build"]
},
"//#format": {},
"//#format:check": {},
"test": {},
"test:watch": {
"cache": false
},
"@shopify/cli-hydrogen#build": {
"dependsOn": [
"@shopify/hydrogen-codegen#build",
"@shopify/mini-oxygen#build"
]
},
"@shopify/create-hydrogen#build": {
"dependsOn": ["@shopify/cli-hydrogen#build"]
},
"@shopify/create-hydrogen#test": {
"dependsOn": ["@shopify/create-hydrogen#build"]
},
"@shopify/remix-oxygen#build": {
"dependsOn": ["@shopify/hydrogen#build"]
},
"@shopify/hydrogen#build": {
"dependsOn": ["@shopify/hydrogen-react#build"]
},
"skeleton#build": {
"dependsOn": [
"@shopify/hydrogen#build",
"@shopify/cli-hydrogen#build",
"@shopify/remix-oxygen#build"
],
"outputs": ["dist/**"]
}
}
}