-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathturbo.json
More file actions
104 lines (104 loc) · 2.28 KB
/
turbo.json
File metadata and controls
104 lines (104 loc) · 2.28 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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env", "**/.env.*local"],
"globalEnv": [
"APP_PUBLIC_URL",
"STRAPI_URL",
"STRAPI_REST_READONLY_API_KEY",
"NEXT_OUTPUT",
"WEBPACK_CACHE_TYPE",
"SENTRY_AUTH_TOKEN",
"SENTRY_ORG",
"SENTRY_PROJECT",
"SENTRY_SUPPRESS_GLOBAL_ERROR_HANDLER_FILE_WARNING",
"CI",
"MOBILE_VIEWPORTS_TESTING_ENABLED",
"BASE_URL",
"ADMIN_PANEL_CONFIG_API_AUTH_TOKEN",
"APP_BRAND",
"APP_URL",
"CLIENT_ACCOUNT_ACTIVATION_URL",
"STRAPI_TELEMETRY_DISABLED",
"RUNNER_TEMP",
"DEBUG_STATIC_PARAMS_GENERATION",
"DEBUG_STRAPI_CLIENT_API_CALLS",
"SHOW_NON_BLOCKING_ERRORS",
"STRAPI_REST_CUSTOM_API_KEY",
"STRAPI_PREVIEW_SECRET",
"BETTER_AUTH_SECRET",
"RECAPTCHA_SECRET_KEY",
"NODE_ENV",
"APP_ENV",
"NEXT_RUNTIME",
"BASIC_AUTH_ENABLED",
"BASIC_AUTH_USERNAME",
"BASIC_AUTH_PASSWORD"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**", "dist/**", "public/**"]
},
"build:static": {
"dependsOn": ["^build"],
"outputs": [
".next/**",
"!.next/cache/**",
"dist/**",
"public/**",
"out/**"
]
},
"lint": {
"dependsOn": ["^lint"]
},
"lint:fix": {
"dependsOn": ["^lint:fix"]
},
"sync-types": {
"cache": false
},
"dev": {
"dependsOn": ["@repo/shared-data#build", "@repo/design-system#build"],
"cache": false,
"persistent": true
},
"start": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
"typecheck": {
"dependsOn": ["^typecheck"]
},
"test": {
"dependsOn": ["^build"],
"cache": true
},
"axe-test": {
"cache": false,
"persistent": false
},
"playwright-interactive-mode": {
"cache": false,
"persistent": false
},
"playwright-e2e-tests": {
"cache": false,
"persistent": false
},
"playwright-seo-tests": {
"cache": false,
"persistent": false
},
"lhci-perfo-check": {
"cache": false,
"persistent": false
},
"playwright-visual-tests": {
"cache": false,
"persistent": false
}
},
"ui": "tui"
}