-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
59 lines (59 loc) · 1.21 KB
/
turbo.json
File metadata and controls
59 lines (59 loc) · 1.21 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
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build", "build:metadata"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [
".next/**",
"!.next/cache/**",
"storybook-static/**",
"data/**"
]
},
"lint:fix": {
"dependsOn": ["^lint:fix"],
"cache": false
},
"lint": {
"dependsOn": ["^lint", "build:metadata"]
},
"check-types": {
"dependsOn": ["^check-types", "build:metadata"]
},
"dev": {
"cache": false,
"persistent": true
},
"build:metadata": {
"cache": false
},
"test": {
"cache": false
},
"test:e2e": {
"cache": false
}
},
"globalEnv": [
"ANALYZE",
"CI",
"GITHUB_TOKEN",
"NEXT_PUBLIC_IS_DEV",
"NEXT_PUBLIC_SENTRY_CLIENT_DSN",
"NEXT_PUBLIC_SENTRY_ENABLED",
"NEXT_PUBLIC_SITE_URL",
"NEXT_RUNTIME",
"SENTRY_AUTH_TOKEN",
"SENTRY_EDGE_DSN",
"SENTRY_SERVER_DSN",
"VERCEL_BRANCH_URL",
"VERCEL_ENV",
"VERCEL_GIT_COMMIT_REF",
"VERCEL_GIT_COMMIT_SHA",
"VERCEL_PROJECT_PRODUCTION_URL",
"PLAYWRIGHT_HTML_PORT",
"PLAYWRIGHT_HTML_HOST"
]
}