-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathturbo.json
50 lines (50 loc) · 1.12 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
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"globalDependencies": ["**/.env", "tsconfig.json"],
"globalEnv": [
"NODE_ENV",
"DATABASE_URL",
"SESSION_SECRET",
"NEXT_PUBLIC_S3_REGION",
"NEXT_PUBLIC_S3_ASSETS_DOMAIN_NAME",
"NEXT_PUBLIC_S3_ASSETS_BUCKET_NAME"
],
"tasks": {
"build": {},
"build:template": {},
"clean": {},
"dev": {
"dependsOn": ["db:setup"],
"cache": false,
"persistent": true
},
"db:setup": {
"cache": false
},
"setup:test": {},
"storybook": {
"cache": false
},
"storybook:build": {
"inputs": ["!storybook-static/**"],
"outputs": ["storybook-static/**"]
},
"generate": {},
"format": {
"dependsOn": ["^build"],
"outputs": ["node_modules/.cache/.prettiercache"],
"outputLogs": "new-only"
},
"lint": {
"dependsOn": ["^build"],
"outputs": ["node_modules/.cache/.eslintcache"]
},
"typecheck": {
"dependsOn": ["^build"],
"outputs": ["node_modules/.cache/tsbuildinfo.json"]
},
"teardown": {},
"test-start": {}
}
}