Skip to content

Commit df7f9fc

Browse files
It depends... (RooCodeInc#3126)
* add protos to more dependsOn, also make it so that the scripts are always displayed and the window does not automatically close * changeset * add back build script
1 parent db0b022 commit df7f9fc

File tree

2 files changed

+18
-15
lines changed

2 files changed

+18
-15
lines changed

.changeset/kind-pears-invent.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"claude-dev": patch
3+
---
4+
5+
Add dependsOn to more blocks in the tasks.json

.vscode/tasks.json

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"label": "watch",
2323
"dependsOn": ["npm: protos", "npm: build:webview", "npm: dev:webview", "npm: watch:tsc", "npm: watch:esbuild"],
2424
"presentation": {
25-
"reveal": "never"
25+
"reveal": "always"
2626
},
2727
"group": {
2828
"kind": "build",
@@ -39,7 +39,7 @@
3939
"npm: watch:esbuild:test"
4040
],
4141
"presentation": {
42-
"reveal": "never"
42+
"reveal": "always"
4343
},
4444
"group": "build"
4545
},
@@ -53,8 +53,7 @@
5353
"dependsOn": ["npm: protos"],
5454
"presentation": {
5555
"group": "watch",
56-
"reveal": "never",
57-
"close": true
56+
"reveal": "always"
5857
},
5958
"options": {
6059
"env": {
@@ -69,10 +68,10 @@
6968
"problemMatcher": [],
7069
"isBackground": true,
7170
"label": "npm: build:webview:test",
71+
"dependsOn": ["npm: protos"],
7272
"presentation": {
7373
"group": "watch",
74-
"reveal": "never",
75-
"close": true
74+
"reveal": "always"
7675
},
7776
"options": {
7877
"env": {
@@ -104,10 +103,10 @@
104103
],
105104
"isBackground": true,
106105
"label": "npm: dev:webview",
106+
"dependsOn": ["npm: protos"],
107107
"presentation": {
108108
"group": "watch",
109-
"reveal": "never",
110-
"close": true
109+
"reveal": "always"
111110
},
112111
"options": {
113112
"env": {
@@ -125,8 +124,7 @@
125124
"dependsOn": ["npm: protos"],
126125
"presentation": {
127126
"group": "watch",
128-
"reveal": "never",
129-
"close": true
127+
"reveal": "always"
130128
},
131129
"options": {
132130
"env": {
@@ -144,8 +142,7 @@
144142
"dependsOn": ["npm: protos"],
145143
"presentation": {
146144
"group": "watch",
147-
"reveal": "never",
148-
"close": true
145+
"reveal": "always"
149146
},
150147
"options": {
151148
"env": {
@@ -161,19 +158,20 @@
161158
"problemMatcher": "$tsc-watch",
162159
"isBackground": true,
163160
"label": "npm: watch:tsc",
161+
"dependsOn": ["npm: protos"],
164162
"presentation": {
165163
"group": "watch",
166-
"reveal": "never",
167-
"close": true
164+
"reveal": "always"
168165
}
169166
},
170167
{
171168
"type": "npm",
172169
"script": "watch-tests",
173170
"problemMatcher": "$tsc-watch",
174171
"isBackground": true,
172+
"dependsOn": ["npm: protos"],
175173
"presentation": {
176-
"reveal": "never",
174+
"reveal": "always",
177175
"group": "watchers"
178176
},
179177
"group": "build"

0 commit comments

Comments
 (0)