I followed this tutorial from Dan Wachlin to run the gulp task. Now I wanted to execute it with VSCode using Ctrl + Shift + B, so I configured this task runner:
{ "version": "0.1.0", "command": "gulp", "isShellCommand": true, "args": [ "--no-color" ], "tasks": [{"taskName":"default","isBuildCommand": true,"isWatching": true,"showOutput": "silent"}]
}
The argument --no-color is used by default in tasks.json, which is automatically created by VSCode. If I remove it, the output from gulp still does not display colors. I want my lint errors to appear in red text.
Is it possible to get color output from gulp in a VSCode output window?
gulp visual-studio-code
mikeesouth
source share