-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathturbo.json
84 lines (84 loc) · 2 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
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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"globalEnv": [
"CI",
"GITHUB_TOKEN",
"PORT",
"NEXT_PUBLIC_GOOGLE_ANALYTICS_ID"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"]
},
"codeforafrica#build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"],
"env": [
"GOOGLE_API_KEY",
"NEXT_PUBLIC_APP_DIRECTORY",
"NEXT_PUBLIC_APP_LOGO_URL",
"NEXT_PUBLIC_APP_NAME",
"NEXT_PUBLIC_APP_URL",
"NEXT_PUBLIC_IMAGE_DOMAINS",
"NEXT_PUBLIC_IMAGE_UNOPTIMIZED",
"NEXT_PUBLIC_VERCEL_ENV",
"NEXT_PUBLIC_VERCEL_URL",
"NODE_ENV",
"NODE_OPTIONS",
"PROJECT_ROOT"
]
},
"promisetracker#build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"],
"env": [
"ACTNOW_API_KEY",
"ACTNOW_URL",
"APP_SLUG",
"GOOGLE_ID",
"GOOGLE_SECRET",
"NEXT_PUBLIC_APP_NAME",
"NEXT_PUBLIC_APP_URL",
"NEXT_PUBLIC_GTM_ID",
"NEXT_PUBLIC_I18N_DEFAULT_LOCALE",
"NEXT_PUBLIC_I18N_LOCALES",
"NEXT_PUBLIC_IMAGE_DOMAINS",
"NEXT_PUBLIC_IMAGE_UNOPTIMIZED",
"NEXT_PUBLIC_VERCEL_ENV",
"NEXT_PUBLIC_VERCEL_URL",
"NEXTAUTH_SECRET",
"NODE_ENV",
"NODE_OPTIONS",
"PROJECT_ROOT",
"PROMISE_TRACKER_SENTRY_DSN",
"PUBLIC_PROMISE_TRACKER_SENTRY_DSN",
"SOURCE_LIB"
]
},
"@hurumap/core": {
"env": ["NEXT_PUBLIC_APP_URL"]
},
"jest": {
"inputs": ["src/**/*.js"]
},
"playwright": {
"dependsOn": ["build"],
"inputs": ["src/**/*.js"]
},
"test": {
"dependsOn": ["build"],
"inputs": ["src/**/*.js"]
},
"lint-check": {},
"lint": {},
"dev": {
"cache": false,
"persistent": true
},
"clean": {
"cache": false
}
}
}