Skip to content

Commit 55398b5

Browse files
jayjunmichael-ciniawsky
authored andcommittedOct 30, 2018
fix(bin/options): correct check for color support (options.color) (#1555)
1 parent 927a2b3 commit 55398b5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎bin/options.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ const options = {
5757
type: 'boolean',
5858
alias: 'colors',
5959
default: function supportsColor() {
60-
return require('supports-color');
60+
// Use `require('supports-color').stdout` for supports-color >= 5.0.0.
61+
// See https://github.com/webpack/webpack-dev-server/pull/1555.
62+
return require('supports-color').stdout;
6163
},
6264
group: DISPLAY_GROUP,
6365
describe: 'Enables/Disables colors on the console'

0 commit comments

Comments
 (0)
Please sign in to comment.