You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The CLI contains a --no-color option, but the API options do not describe how to suppress color output (for example, if not connected to a tty). I don't want to pass colors: [ 'black' ], as that may not work if the user's terminal/console has a black/dark background. Consider a noColor: true option.
// This one is provided for free. Chalk reads this itself and removes colors.
// https://www.npmjs.com/package/chalk#chalksupportscolor
'no-color': {
describe: 'Disables colors from logging',
type: 'boolean',
},
but that is cryptic at best; I don't know if that means I can use 'no-color' as an option in the prefixColors array
options.prefixColors = ['no-color'];
or something else (i.e. just omit prefixColors). If that is the intent, and there is no default prefixColors when
using the API, please update the README to reflect this.
The Chalk doc implies one can use an environment variable FORCE_COLOR=0 (see https://www.npmjs.com/package/chalk#supportscolor -- the source comment link cited above may be wrong) to disable colors, but that may not work if concurrently passes a default set of colors.
The text was updated successfully, but these errors were encountered:
The CLI contains a
--no-color
option, but the APIoptions
do not describe how to suppress color output (for example, if not connected to a tty). I don't want to passcolors: [ 'black' ]
, as that may not work if the user's terminal/console has a black/dark background. Consider anoColor: true
option.concurrently --no-color "echo 1" "echo 2" "echo 3"
There is a source code comment
but that is cryptic at best; I don't know if that means I can use
'no-color'
as an option in theprefixColors
arrayor something else (i.e. just omit prefixColors). If that is the intent, and there is no default
prefixColors
whenusing the API, please update the README to reflect this.
The Chalk doc implies one can use an environment variable
FORCE_COLOR=0
(see https://www.npmjs.com/package/chalk#supportscolor -- the source comment link cited above may be wrong) to disable colors, but that may not work ifconcurrently
passes a default set of colors.The text was updated successfully, but these errors were encountered: