-
Notifications
You must be signed in to change notification settings - Fork 3
/
turbo.json
46 lines (46 loc) · 1006 Bytes
/
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
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "es/**", "umd/**", ".docusaurus/**", "build/**"],
"env": ["API_KEY"]
},
"@shopware-ag/meteor-component-library#build:storybook": {
"outputs": ["storybook-static/**"],
"env": ["SHOW_INTERACTIONS"]
},
"dev": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
"lint:all": {
"outputs": []
},
"lint:types": {
"outputs": []
},
"lint:eslint": {
"outputs": []
},
"format:check": {},
"test:unit": {
"env": [
"FIGMA_TOKEN",
"ADMIN_TOKENS_FILE_KEY",
"PRIMITIVE_TOKENS_FILE_KEY",
"CI"
],
"outputs": []
},
"test:e2e": {
"outputs": [],
"dependsOn": ["^build"]
},
"@shopware-ag/meteor-component-library#test:storybook": {
"outputs": [],
"dependsOn": ["^build"]
}
}
}