forked from JeremyHeleine/Photo-Sphere-Viewer
-
-
Notifications
You must be signed in to change notification settings - Fork 686
/
turbo.json
50 lines (50 loc) · 1023 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
47
48
49
50
{
"$schema": "https://turborepo.org/schema.json",
"globalDependencies": [
"build/**",
"tsconfig.json",
".eslintrc.json",
".stylelintrc.json",
"packages/shared/*.{ts,scss,glsl}"
],
"pipeline": {
"build": {
"dependsOn": ["^build"],
"inputs": ["src/**"],
"outputs": ["dist/**"]
},
"lint": {
"inputs": ["src/**"]
},
"photo-sphere-viewer-e2e#lint": {
"inputs": ["e2e/**", "support/**", "utils/**"]
},
"test": {
"inputs": ["src/**"],
"outputs": ["reports/**"]
},
"build-doc": {},
"//#build-doc": {
"dependsOn": ["photo-sphere-viewer-doc#build-doc"]
},
"watch": {
"cache": false,
"persistent": true
},
"//#watch": {
"cache": false,
"persistent": true
},
"serve-doc": {
"cache": false
},
"npm-link": {
"dependsOn": ["build"],
"cache": false
},
"publish-dist": {
"dependsOn": ["^publish-dist"],
"cache": false
}
}
}