@@ -437,15 +437,15 @@ export class CLI {
437437 // the SDK still uses the `colors` package, so we need to add the
438438 // colors to the string prototype
439439 const assignColors = proto => Object . defineProperties ( proto , {
440- blue : { get ( ) { return blue ( `${ this } ` ) ; } } ,
441- bold : { get ( ) { return bold ( `${ this } ` ) ; } } ,
442- cyan : { get ( ) { return cyan ( `${ this } ` ) ; } } ,
443- gray : { get ( ) { return gray ( `${ this } ` ) ; } } ,
444- green : { get ( ) { return green ( `${ this } ` ) ; } } ,
445- grey : { get ( ) { return gray ( `${ this } ` ) ; } } ,
446- magenta : { get ( ) { return magenta ( `${ this } ` ) ; } } ,
447- red : { get ( ) { return red ( `${ this } ` ) ; } } ,
448- yellow : { get ( ) { return yellow ( `${ this } ` ) ; } }
440+ blue : { get ( ) { return blue ( `${ this } ` ) ; } , configurable : true } ,
441+ bold : { get ( ) { return bold ( `${ this } ` ) ; } , configurable : true } ,
442+ cyan : { get ( ) { return cyan ( `${ this } ` ) ; } , configurable : true } ,
443+ gray : { get ( ) { return gray ( `${ this } ` ) ; } , configurable : true } ,
444+ green : { get ( ) { return green ( `${ this } ` ) ; } , configurable : true } ,
445+ grey : { get ( ) { return gray ( `${ this } ` ) ; } , configurable : true } ,
446+ magenta : { get ( ) { return magenta ( `${ this } ` ) ; } , configurable : true } ,
447+ red : { get ( ) { return red ( `${ this } ` ) ; } , configurable : true } ,
448+ yellow : { get ( ) { return yellow ( `${ this } ` ) ; } , configurable : true }
449449 } ) ;
450450
451451 assignColors ( String . prototype ) ;
0 commit comments