We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From #30058
I don't know whether this is supposed to work. I modified the build task from https://github.com/Microsoft/vscode-chrome-debug-core/blob/master/.vscode/tasks.json to clear the terminal before building, and to be a build task instead of watching. So it looks like this:
{ "label": "my build task", "type": "npm", "script": "build", "problemMatcher": "$gulp-tsc", "presentation": { "echo": true, "reveal": "always", "focus": false, "panel": "shared", "showReuseMessage": true, "clear": true }, "group": { "kind": "build", "isDefault": true } }
task my build task
If I modify it to be a shell task then it does clear the terminal as I'd expect
{ "label": "my shell build task", "type": "shell", "command": "npm run build", "problemMatcher": "$gulp-tsc", "presentation": { "echo": true, "reveal": "always", "focus": false, "panel": "shared", "showReuseMessage": true, "clear": true } }
The text was updated successfully, but these errors were encountered:
Thanks for filing! Duplicate of #62474
Sorry, something went wrong.
alexr00
No branches or pull requests
From #30058
I don't know whether this is supposed to work. I modified the build task from https://github.com/Microsoft/vscode-chrome-debug-core/blob/master/.vscode/tasks.json to clear the terminal before building, and to be a build task instead of watching. So it looks like this:
task my build task
If I modify it to be a shell task then it does clear the terminal as I'd expect
The text was updated successfully, but these errors were encountered: