-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathturbo.json
More file actions
89 lines (89 loc) · 2.29 KB
/
turbo.json
File metadata and controls
89 lines (89 loc) · 2.29 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"dangerouslyDisablePackageManagerCheck": true,
"tasks": {
"build": {
"dependsOn": ["^build", "codegen"],
"inputs": ["$TURBO_DEFAULT$", ".env*", "tsdown.config.ts", "../../shared/tsdown-factory.ts"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**", "artifacts/**"],
"outputLogs": "new-only"
},
"codegen": {
"inputs": ["graphql/**"],
"outputs": [
".settlemint/**",
"schema.graphql",
"src/examples/schemas/**",
"src/portal/portal-cache.d.ts",
"src/portal/portal-env.d.ts"
],
"outputLogs": "new-only"
},
"publish-npm": {
"dependsOn": ["build"],
"cache": false,
"outputLogs": "new-only"
},
"//#lint:biome": {
"dependsOn": ["//#format:biome"]
},
"//#format:biome": {},
"lint": {
"dependsOn": ["^build", "//#lint:biome"],
"outputLogs": "new-only"
},
"//#knip": {
"cache": false,
"outputLogs": "new-only"
},
"docker": {
"cache": false,
"outputLogs": "new-only"
},
"attw": {
"dependsOn": ["build"],
"outputLogs": "new-only"
},
"publint": { "dependsOn": ["build"], "outputLogs": "new-only" },
"dev": {
"dependsOn": ["^build", "codegen"],
"cache": false,
"persistent": true,
"outputLogs": "new-only"
},
"test": {
"dependsOn": ["^build"],
"outputLogs": "new-only"
},
"test:coverage": {
"dependsOn": ["^build"],
"outputLogs": "new-only"
},
"translate": {
"inputs": ["messages/**"],
"outputLogs": "new-only"
},
"typecheck": {
"dependsOn": ["^build", "codegen"],
"outputLogs": "new-only"
},
"docs": {
"dependsOn": ["^build", "codegen"],
"inputs": ["src/**", "scripts/create-docs.ts", "../../typedoc.config.mjs", "../../package.json"],
"outputs": ["docs/**", "!docs/ABOUT.md"],
"outputLogs": "new-only"
},
"//#generate-readme": {
"dependsOn": ["^build"],
"inputs": [
"scripts/generate-readme.ts",
"scripts/templates/README-template.md",
"sdk/**/docs/**",
"sdk/**/examples/**"
],
"outputs": ["sdk/**/README.md"],
"outputLogs": "new-only"
}
}
}