@@ -321,9 +321,9 @@ export default class ServiceCheck extends ProjectCommand {
321321 return [
322322 {
323323 enabled : ( ) => ! ! serviceName ,
324- title : `Validate graph composition for service ${ chalk . blue (
324+ title : `Validate graph composition for service ${ chalk . cyan (
325325 serviceName || ""
326- ) } on graph ${ chalk . blue ( graphName ) } `,
326+ ) } on graph ${ chalk . cyan ( graphName ) } `,
327327 task : async ( ctx : TasksOutput , task ) => {
328328 if ( ! serviceName ) {
329329 throw new Error (
@@ -337,7 +337,7 @@ export default class ServiceCheck extends ProjectCommand {
337337 throw new Error ( "No SDL found for federated service" ) ;
338338 }
339339
340- task . output = `Attempting to compose graph with ${ chalk . blue (
340+ task . output = `Attempting to compose graph with ${ chalk . cyan (
341341 serviceName
342342 ) } service's partial schema`;
343343
@@ -366,7 +366,7 @@ export default class ServiceCheck extends ProjectCommand {
366366 task . title = `Found ${ pluralize (
367367 compositionValidationResult . errors . length ,
368368 "graph composition error"
369- ) } for service ${ chalk . blue ( serviceName ) } on graph ${ chalk . blue (
369+ ) } for service ${ chalk . cyan ( serviceName ) } on graph ${ chalk . cyan (
370370 graphName
371371 ) } `;
372372
@@ -417,7 +417,7 @@ export default class ServiceCheck extends ProjectCommand {
417417 {
418418 title : `Validating ${
419419 serviceName ? "composed " : ""
420- } schema against tag ${ chalk . blue ( tag ) } on graph ${ chalk . blue (
420+ } schema against tag ${ chalk . cyan ( tag ) } on graph ${ chalk . cyan (
421421 graphName
422422 ) } `,
423423 // We have already performed validation per operation above if the service is federated
@@ -506,14 +506,14 @@ export default class ServiceCheck extends ProjectCommand {
506506 : null ;
507507
508508 task . title = `Compared ${ pluralize (
509- chalk . blue ( schemaChanges . length . toString ( ) ) ,
509+ chalk . cyan ( schemaChanges . length . toString ( ) ) ,
510510 "schema change"
511511 ) } against ${ pluralize (
512- chalk . blue ( numberOfCheckedOperations . toString ( ) ) ,
512+ chalk . cyan ( numberOfCheckedOperations . toString ( ) ) ,
513513 "operation"
514514 ) } ${
515515 hours
516- ? ` over the last ${ chalk . blue ( formatTimePeriod ( hours ) ) } `
516+ ? ` over the last ${ chalk . cyan ( formatTimePeriod ( hours ) ) } `
517517 : ""
518518 } `;
519519 }
@@ -529,10 +529,10 @@ export default class ServiceCheck extends ProjectCommand {
529529 breakingSchemaChangeCount ;
530530
531531 task . title = `Found ${ pluralize (
532- chalk . blue ( breakingSchemaChangeCount . toString ( ) ) ,
532+ chalk . cyan ( breakingSchemaChangeCount . toString ( ) ) ,
533533 "breaking change"
534534 ) } and ${ pluralize (
535- chalk . blue ( nonBreakingSchemaChangeCount . toString ( ) ) ,
535+ chalk . cyan ( nonBreakingSchemaChangeCount . toString ( ) ) ,
536536 "compatible change"
537537 ) } `;
538538
0 commit comments