We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71f2e71 commit b8d4e19Copy full SHA for b8d4e19
packages/angular_devkit/core/src/terminal/caps.ts
@@ -84,11 +84,11 @@ function _getColorLevel(stream: Socket): 0 | 1 | 2 | 3 {
84
}
85
86
87
- if (stream && !stream.isTTY) {
+ if (stream && !stream.isTTY && !_env.MSYSTEM) {
88
return 0;
89
90
91
- if (_platform.startsWith('win32')) {
+ if (_platform.startsWith('win32') && !_env.MSYSTEM) {
92
// Node.js 7.5.0 is the first version of Node.js to include a patch to
93
// libuv that enables 256 color output on Windows. Anything earlier and it
94
// won't work. However, here we target Node.js 8 at minimum as it is an LTS
0 commit comments