Skip to content

Commit c475e67

Browse files
committed
chore: update turborepo pipeline config
1 parent 5fd4a44 commit c475e67

File tree

1 file changed

+48
-21
lines changed

1 file changed

+48
-21
lines changed

turbo.json

Lines changed: 48 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
11
{
22
"$schema": "https://turbo.build/schema.json",
33
"pipeline": {
4-
"stub": {
5-
"cache": false,
6-
"persistent": true
7-
},
8-
"dev": {
9-
"cache": false,
10-
"persistent": true
4+
"@vue/devtools#stub": {
5+
"dependsOn": [
6+
"^@vue/devtools-electron#stub"
7+
]
118
},
12-
"prepare:type": {
13-
"dependsOn": ["^prepare:type"],
14-
"outputs": ["dist/**/*.d.ts"]
9+
"@vue/devtools-browser-extension#build": {
10+
"dependsOn": [
11+
"@vue/devtools-client#build",
12+
"^build"
13+
],
14+
"outputs": [
15+
"dist/**"
16+
]
1517
},
1618
"@vue/devtools-client#build": {
17-
"dependsOn": ["^build"],
19+
"dependsOn": [
20+
"^build"
21+
],
1822
"outputs": [
1923
"dist/**",
2024
"../electron/client/**",
@@ -23,23 +27,46 @@
2327
]
2428
},
2529
"@vue/devtools-electron#build": {
26-
"dependsOn": ["@vue/devtools-client#build", "^build"],
30+
"dependsOn": [
31+
"@vue/devtools-client#build",
32+
"^build"
33+
],
2734
"outputs": [
2835
"dist/{app|cli|index|devtools|user-app}.?{c|m}js",
2936
"dist/{app|cli|index|devtools|user-app}.d.ts"
3037
]
3138
},
32-
"@vue/devtools-browser-extension#build": {
33-
"dependsOn": ["@vue/devtools-client#build", "^build"],
34-
"outputs": ["dist/**"]
39+
"build": {
40+
"dependsOn": [
41+
"^build"
42+
],
43+
"outputs": [
44+
"dist/**/*.?{c|m}js"
45+
]
3546
},
36-
"vite-plugin-vue-devtools#build": {
37-
"dependsOn": ["@vue/devtools-client#build", "^build"],
38-
"outputs": ["dist/**"]
47+
"dev": {
48+
"cache": false,
49+
"persistent": true
3950
},
40-
"build": {
41-
"dependsOn": ["^build"],
42-
"outputs": ["dist/**/*.?{c|m}js"]
51+
"prepare:type": {
52+
"dependsOn": [
53+
"^prepare:type"
54+
],
55+
"outputs": [
56+
"dist/**/*.d.ts"
57+
]
58+
},
59+
"stub": {
60+
"cache": false
61+
},
62+
"vite-plugin-vue-devtools#build": {
63+
"dependsOn": [
64+
"@vue/devtools-client#build",
65+
"^build"
66+
],
67+
"outputs": [
68+
"dist/**"
69+
]
4370
}
4471
}
4572
}

0 commit comments

Comments
 (0)