forked from cloudflare/sandbox-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
110 lines (110 loc) · 2.49 KB
/
Copy pathturbo.json
File metadata and controls
110 lines (110 loc) · 2.49 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
100
101
102
103
104
105
106
107
108
109
110
{
"$schema": "https://turbo.build/schema.json",
"globalEnv": ["NODE_ENV"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "build/**"],
"inputs": [
"tsdown.config.ts",
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.astro",
"package.json",
"tsconfig.json",
"tsconfig.*.json",
"wrangler.jsonc",
"Dockerfile"
],
"env": ["NODE_ENV"]
},
"test": {
"dependsOn": ["^build"],
"outputs": [],
"inputs": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.astro",
"tests/**/*.ts",
"vitest.config.ts",
"package.json"
],
"env": ["NODE_ENV"]
},
"typecheck": {
"dependsOn": ["^build"],
"outputs": [],
"inputs": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.astro",
"tsconfig.json",
"tsconfig.*.json"
]
},
"check": {
"dependsOn": ["typecheck"],
"outputs": [],
"inputs": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.astro", "biome.json"]
},
"docker:local": {
"dependsOn": ["^build"],
"cache": false,
"outputs": [],
"inputs": [
"Dockerfile",
"packages/sandbox/startup.sh",
"packages/sandbox-container/src/**",
"packages/shared/src/**"
]
},
"dev": {
"cache": false,
"persistent": true
},
"start": {
"cache": false,
"persistent": true
},
"deploy": {
"dependsOn": ["^build"],
"cache": false,
"outputs": []
},
"clean": {
"cache": false
},
"test:e2e:vitest": {
"dependsOn": ["^build", "docker:local"],
"cache": false,
"outputs": [],
"inputs": [
"tests/e2e/**/*.ts",
"!tests/e2e/browser/**",
"vitest.e2e.config.ts",
"packages/sandbox/Dockerfile"
]
},
"test:perf": {
"dependsOn": ["^build", "docker:local"],
"cache": false,
"outputs": ["perf-results/**"],
"inputs": [
"tests/perf/**/*.ts",
"vitest.perf.config.ts",
"packages/sandbox/Dockerfile"
]
},
"test:e2e:browser": {
"dependsOn": ["^build", "docker:local"],
"cache": false,
"outputs": [],
"inputs": [
"tests/e2e/browser/**/*.ts",
"tests/e2e/test-worker/**/*.ts",
"packages/sandbox/Dockerfile"
]
}
},
"globalDependencies": ["tooling/typescript-config/*.json", "biome.json"]
}