-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathturbo.json
47 lines (47 loc) · 1.18 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
{
"$schema": "https://turbo.build/schema.json",
"globalEnv": ["BASE_PATH"],
"tasks": {
"build2": {
"inputs": [
"$TURBO_DEFAULT$",
"../../packages/e2e/bin/build.mjs",
"../../packages/e2e/src/{CheesyCanvas.jsx,deterministic.js,vite-plugin-monkey.js,vite.config.ts}"
],
"outputs": ["dist/**"],
"cache": true
},
"website#build3": {
"dependsOn": ["^build2"],
"env": ["BASE_URL"],
"inputs": [
"$TURBO_DEFAULT$",
"../../packages/e2e/snapshot.test.js-snapshots/**"
],
"outputs": [".next/**", "!.next/cache/**", "out/**"],
"cache": true
},
"test": {
"env": ["PLAYWRIGHT_BROWSERS_PATH"],
"dependsOn": ["build2"],
"inputs": [
"$TURBO_DEFAULT$",
"../../packages/e2e/bin/test.mjs",
"../../packages/e2e/{playwright.config.ts,snapshot.test.js}"
],
"outputs": ["../../packages/e2e/snapshot.test.js-snapshots/**"],
"cache": true
},
"lint": {
"dependsOn": ["^lint"]
},
"dev2": {
"cache": false,
"persistent": true
},
"website#dev2": {
"cache": false,
"persistent": true
}
}
}