forked from BrownBrownBear/monobera
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
executable file
·37 lines (37 loc) · 793 Bytes
/
turbo.json
File metadata and controls
executable file
·37 lines (37 loc) · 793 Bytes
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
{
"$schema": "https://turborepo.org/schema.json",
"globalDependencies": [".env", "./secrets/**"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [
"dist/**",
".next/**",
"!.next/cache/**",
"storybook-static/**"
]
},
"start": {
"persistent": true,
"cache": false
},
"lint": {},
"lint:fix": {},
"storybook": {},
"storybook:build": {},
"clean": {
"cache": false
},
"dev": {
"persistent": true,
"cache": false,
"env": [".env.bartio"]
},
"check-types": {
"dependsOn": ["^build"],
"cache": false,
"outputs": ["storybook-static/**"]
}
},
"globalEnv": ["CI", "NODE_ENV", "SKIP_ENV_VALIDATION", "VERCEL", "VERCEL_ENV"]
}