-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathturbo.json
64 lines (64 loc) · 1.56 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
61
62
63
64
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"dangerouslyDisablePackageManagerCheck": true,
"tasks": {
"build": {
"dependsOn": ["^build", "codegen"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**", "artifacts/**"]
},
"codegen": {
"inputs": ["graphql/**"],
"outputs": [".settlemint/**", "schema.graphql"]
},
"publish-npm": {
"dependsOn": ["build"],
"cache": false
},
"//#lint:biome": {
"dependsOn": ["//#format:biome"]
},
"//#format:biome": {},
"lint": {
"dependsOn": ["^build", "//#lint:biome"]
},
"//#knip": {
"cache": false
},
"docker": {
"cache": false
},
"attw": {
"dependsOn": ["build"]
},
"publint": { "dependsOn": ["build"] },
"dev": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
"test": {
"dependsOn": ["^build"]
},
"test:coverage": {
"dependsOn": ["^build"]
},
"translate": {
"inputs": ["messages/**"]
},
"typecheck": {
"dependsOn": ["^build", "codegen"]
},
"docs": {
"dependsOn": ["^build"],
"inputs": ["src/**", "scripts/create-docs.ts", "../../typedoc.config.mjs", "../../package.json"],
"outputs": ["docs/**", "!docs/ABOUT.md"]
},
"//#generate-readme": {
"dependsOn": ["^build"],
"inputs": ["scripts/generate-readme.ts", "scripts/templates/README-template.md", "sdk/**/docs/**"],
"outputs": ["sdk/**/README.md"]
}
}
}