-
Notifications
You must be signed in to change notification settings - Fork 2
/
turbo.json
113 lines (113 loc) · 2.39 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["tsconfig.json", ".bun-version", ".node-version"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "**/dist/*", "**/dist/**/*", "bin/**"],
"inputs": ["**/package.json", "src/**", "**/src/**"]
},
"tempest.games#build": {
"dependsOn": ["^build"],
"outputs": ["app/**", "bin/**"],
"inputs": ["**/package.json", "src/**"]
},
"atom.io.fyi#build": {
"dependsOn": ["atom.io#build"],
"outputs": ["dist/**"],
"inputs": ["**/package.json", "src/**"]
},
"test:once": {
"dependsOn": ["build"],
"inputs": [
"**/package.json",
"src/**",
"**/src/**",
"__tests__/**",
"__scripts__/**"
]
},
"test:coverage": {
"outputs": ["coverage/**", "**/coverage/**"],
"inputs": [
"**/package.json",
"src/**/*",
"**/src/**",
"__tests__/**",
"__scripts__/**"
]
},
"test:semver": {
"inputs": [
"../../.changeset/**",
"../../packages/break-check/src/**/*.ts",
"break-check.config.json",
"**/package.json",
"src/**/*.{ts,tsx,scss,mdx}",
"**/src/**/*.{ts,tsx,scss,mdx}",
"__tests__/public/**/*.test.{ts,tsx}",
"__scripts__/**/*.ts"
]
},
"lint:biome": {
"cache": false
},
"lint:eslint:build": {
"outputs": ["eslint-plugin/dist/**/*", "dist/**/*"],
"inputs": ["eslint-plugin/src/**/*.ts", "tsup.config.ts"]
},
"lint:eslint": {
"dependsOn": ["lint:eslint:build"],
"inputs": [
"../../package.json",
"../../eslint.config.ts",
"**/package.json",
"tsconfig.json",
"src/**",
"**/src/**",
"__tests__/**",
"__scripts__/**"
]
},
"lint:types": {
"dependsOn": ["gen"],
"inputs": [
"../../package.json",
"../../tsconfig.json",
"**/package.json",
"tsconfig.json",
"src/**",
"**/src/**",
"__tests__/**",
"__scripts__/**"
]
},
"lint:types:watch": {
"persistent": true,
"dependsOn": ["gen"],
"inputs": [
"../../package.json",
"**/package.json",
"tsconfig.json",
"src/**",
"**/src/**",
"__tests__/**",
"__scripts__/**"
]
},
"lint": {
"dependsOn": ["lint:biome", "lint:eslint", "lint:types"]
},
"gen": {
"outputs": ["**/*.gen.ts", "**/*.gen.tsx"],
"inputs": [
"**/package.json",
"tsconfig.json",
"src/**",
"**/src/**",
"__tests__/**",
"__scripts__/**"
]
}
}
}