-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathturbo.json
More file actions
45 lines (45 loc) · 1.09 KB
/
turbo.json
File metadata and controls
45 lines (45 loc) · 1.09 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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"globalEnv": ["CI", "GITHUB_TOKEN", "NODE_ENV", "PORT"],
"tasks": {
"//#format:check": {},
"//#format": {
"cache": false
},
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"]
},
"jest": {
"inputs": [
"$TURBO_DEFAULT$",
"$TURBO_ROOT$/packages/jest-config-commons-ui/**/*.js",
"$TURBO_ROOT$/packages/jest-config-commons-ui/package.json",
"$TURBO_ROOT$/packages/commons-ui-testing-library/src/**",
"$TURBO_ROOT$/packages/commons-ui-testing-library/jest.setup.js",
"$TURBO_ROOT$/packages/commons-ui-testing-library/package.json"
]
},
"playwright": {
"dependsOn": ["build"]
},
"test": {
"dependsOn": ["build"]
},
"lint:check": {
"dependsOn": ["^lint:check"]
},
"lint": {
"dependsOn": ["^lint"],
"cache": false
},
"dev": {
"cache": false,
"persistent": true
},
"clean": {
"cache": false
}
}
}