-
Notifications
You must be signed in to change notification settings - Fork 39
/
turbo.json
64 lines (64 loc) · 1.83 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"update-changelog": {
"cache": false
},
"verify": {
"inputs": ["package.json", "**/package.xml"]
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "!dist/tmp/**"]
},
"release": {
"dependsOn": ["^release", "verify"],
"outputs": ["dist/**", "!dist/tmp/**"]
},
"build:module": {
"dependsOn": ["^build"],
"outputs": []
},
"release:module": {
"cache": false,
"dependsOn": ["^release", "verify"]
},
"push-update": {
"cache": false,
"dependsOn": ["release:module"]
},
"test": {
"outputs": [],
"inputs": ["src/**", "typings/**", "package.json", "tsconfig.json"]
},
"lint": {
"outputs": []
},
"create-gh-release": {
"cache": false,
"dependsOn": ["release", "release:module", "push-update", "verify"]
},
"create-translation": {
"cache": false,
"outputs": [],
"inputs": ["src/**/*.xml", "!src/**/package.xml"]
},
"publish-marketplace": {
"cache": false
},
"e2e": {
"inputs": [
"assets/**",
"src/**",
"cypress/**",
"cypress-visual-screenshots/**",
"cypress.config.*",
"package.json",
"!src/*.{editorConfig,editorPreview,icon,tile,xml}*",
"!**/__tests__/**"
],
"outputs": []
}
},
"globalDependencies": ["automation/**", ".npmrc", ".nvmrc", ".github/**", "package.json"]
}