-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
turbo.json
40 lines (40 loc) · 1.04 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
{
"$schema": "https://turbo.build/schema.json",
"globalDotEnv": [".env.local", ".env"],
"pipeline": {
"build": {
"dependsOn": ["^build"],
"cache": true,
"outputs": [".svelte-kit/**", "dist/**"]
},
"@svelte-dev/session#build": {},
"@svelte-dev/auth#build": {},
"@svelte-dev/auth-oauth2#build": {},
"@svelte-dev/auth-github#build": {
"dependsOn": ["@svelte-dev/auth-oauth2#build"]
},
"@svelte-dev/i18n#build": {},
"web#build": {
"dependsOn": [
"@svelte-dev/auth#build",
"@svelte-dev/session#build",
"@svelte-dev/i18n#build",
"@svelte-dev/auth-github#build"
]
},
"web#dev": {
"dependsOn": ["@svelte-dev/auth#build", "@svelte-dev/session#build", "@svelte-dev/i18n#build"]
},
"test": {
"outputs": ["coverage/**"],
"dependsOn": ["build"],
"inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts"],
"outputMode": "full"
},
"lint": {},
"dev": {
"cache": true,
"persistent": true
}
}
}