-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathturbo.json
53 lines (53 loc) · 1.11 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
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"globalDependencies": ["**/.env.*local"],
"globalEnv": ["CI", "NODE_ENV", "NEXT_PUBLIC_BASE_URL", "NEXT_RUNTIME"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"env": [
"REDIS_URL",
"REMOTE_CACHE_SERVER_BASE_URL",
"SERVER_STARTED",
"PORT",
"PPR_ENABLED"
],
"outputs": [".next/**", "!.next/cache/**", "dist/**", "out/**"]
},
"build:docs": {
"dependsOn": ["^build:docs"],
"outputs": [".next/**", "!.next/cache/**", "out/**"]
},
"eslint:check": {
"cache": false,
"dependsOn": ["^eslint:check"]
},
"eslint:fix": {
"cache": false,
"dependsOn": ["^eslint:fix"]
},
"test": {
"cache": false
},
"e2e": {
"cache": false
},
"start": {
"cache": false,
"persistent": true
},
"start:docs": {
"cache": false,
"persistent": true
},
"dev": {
"cache": false,
"persistent": true
},
"dev:docs": {
"cache": false,
"persistent": true
}
}
}