-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathturbo.json
More file actions
49 lines (49 loc) · 1.5 KB
/
turbo.json
File metadata and controls
49 lines (49 loc) · 1.5 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
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"website#dev": {
"dependsOn": [
"@vapor-ui/core#build",
"@vapor-ui/icons#build",
"@vapor-ui/css-generator#build",
"@vapor-ui/color-generator#build"
],
"outputs": ["dist/**"]
},
"website#start": {
"dependsOn": ["website#build"],
"outputs": [".next/**", "!.next/cache/**"]
},
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"typecheck": { "dependsOn": ["^build"] },
"test": { "outputs": [], "dependsOn": ["^build"] },
"test:regressions": {
"dependsOn": ["storybook#build:storybook"],
"cache": false
},
"lint": { "outputs": [] },
"format": { "outputs": [], "cache": false },
"format:check": { "outputs": [] },
"clean": { "cache": false },
"build:storybook": {
"dependsOn": ["@vapor-ui/core#build", "@vapor-ui/icons#build"],
"inputs": ["$TURBO_DEFAULT$"],
"outputs": ["storybook-static/**"]
}
},
"globalEnv": [
"NODE_ENV",
"CI",
"TEST_URL",
"PORT",
"npm_lifecycle_event",
"COMPONENT",
"STORYBOOK_SKIP_DOCGEN"
],
"globalPassThroughEnv": ["FIGMA_API_KEY"]
}