-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathturbo.json
More file actions
99 lines (99 loc) · 2.33 KB
/
turbo.json
File metadata and controls
99 lines (99 loc) · 2.33 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
90
91
92
93
94
95
96
97
98
99
{
"$schema": "https://turbo.build/schema.json",
"daemon": false,
"ui": "stream",
"tasks": {
"setup": {
"dependsOn": ["build"],
"cache": false
},
"generate-definitions": {
"dependsOn": [],
"inputs": [
"src/tools/**/*.ts",
"src/skills.ts",
"scripts/generate-definitions.ts",
"!src/**/*.test.ts",
"../../plugins/sentry-mcp/agents/sentry-mcp.md",
"../../plugins/sentry-mcp-experimental/agents/sentry-mcp.md"
],
"outputs": [
"src/toolDefinitions.json",
"src/skillDefinitions.json",
"../../plugins/sentry-mcp/agents/sentry-mcp.md",
"../../plugins/sentry-mcp-experimental/agents/sentry-mcp.md"
],
"cache": true
},
"dev": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
"deploy": {
"dependsOn": ["^build"],
"outputs": [],
"cache": true
},
"lint": {
"dependsOn": ["^build"],
"inputs": ["**/*.{ts,tsx,js,jsx}", "biome.json", "package.json"],
"cache": true
},
"test": {
"dependsOn": ["^build"],
"inputs": [
"src/**/*.ts",
"**/*.test.ts",
"**/*.spec.ts",
"vitest.config.ts",
"package.json"
],
"outputs": ["coverage/**", "*.junit.xml"],
"cache": true
},
"tsc": {
"dependsOn": ["^build"],
"inputs": ["src/**/*.{ts,tsx}", "tsconfig*.json"],
"outputs": [],
"cache": true
},
"eval": {
"dependsOn": ["^build"],
"outputs": [],
"cache": true
},
"build": {
"dependsOn": ["^build"],
"inputs": [
"src/**/*.{ts,tsx,js,jsx,json}",
"package.json",
"tsconfig*.json",
"tsdown.config.ts",
"vite.config.ts",
"wrangler.jsonc",
"!**/*.test.{ts,tsx}",
"!**/*.spec.{ts,tsx}"
],
"outputs": [".next/**", "!.next/cache/**", "dist/**", "*.tsbuildinfo"],
"cache": true
},
"after-build": {
"dependsOn": ["build"],
"cache": false
}
},
"globalPassThroughEnv": [
"NODE_ENV",
"CI",
"OPENAI_API_KEY",
"COOKIE_SECRET",
"SENTRY_CLIENT_ID",
"SENTRY_CLIENT_SECRET",
"SENTRY_AUTH_TOKEN",
"SENTRY_ACCESS_TOKEN",
"SENTRY_SPOTLIGHT",
"VITE_SENTRY_DSN",
"VITE_SENTRY_ENVIRONMENT"
]
}