Open GorvGoyl opened 3 years ago
When I stop a dependsOn compound task, I get the error: Terminal not found. I have to manually stop underlying tasks each time.
dependsOn
tasks.json:
{ "label": "tsc watch & start:func", "dependsOn": ["npm: watch", "npm: start:func"] }, { "type": "npm", "script": "watch", "group": "test", "problemMatcher": [], "label": "npm: watch", "detail": "tsc --watch", "presentation": { "echo": true, "reveal": "always", "focus": false, "panel": "shared", "showReuseMessage": true, "clear": false } }, { "type": "npm", "script": "start:func", "problemMatcher": [], "label": "npm: start:func", "detail": "firebase emulators:start --only functions", "presentation": { "echo": true, "reveal": "always", "focus": true, "panel": "shared", "showReuseMessage": true, "clear": false } }
Happens to me on all tasks too
Happens for me too on latest versions.
Task Explorer: 2.13.2 VSCode: 1.75.1 OS: Windows 10
2.13.2
1.75.1
This happens to me anytime a task gets an error for some reason.
When I stop a
dependsOn
compound task, I get the error: Terminal not found. I have to manually stop underlying tasks each time.tasks.json: