refactor: change UPDATE action color to cyan

This commit is contained in:
Alan Agius 2020-09-14 21:57:46 +02:00 committed by Charles
parent a21eb1588e
commit 64cc005f0b
3 changed files with 3 additions and 3 deletions

View File

@ -100,7 +100,7 @@ export class UpdateCommand extends Command<UpdateCommandSchema> {
this.logger.error(`ERROR! ${eventPath} ${desc}.`);
break;
case 'update':
logs.push(`${colors.whiteBright('UPDATE')} ${eventPath} (${event.content.length} bytes)`);
logs.push(`${colors.cyan('UPDATE')} ${eventPath} (${event.content.length} bytes)`);
files.add(eventPath);
break;
case 'create':

View File

@ -501,7 +501,7 @@ export abstract class SchematicCommand<
break;
case 'update':
loggingQueue.push(tags.oneLine`
${colors.white('UPDATE')} ${eventPath} (${event.content.length} bytes)
${colors.cyan('UPDATE')} ${eventPath} (${event.content.length} bytes)
`);
break;
case 'create':

View File

@ -217,7 +217,7 @@ export async function main({
break;
case 'update':
loggingQueue.push(tags.oneLine`
${colors.white('UPDATE')} ${eventPath} (${event.content.length} bytes)
${colors.cyan('UPDATE')} ${eventPath} (${event.content.length} bytes)
`);
break;
case 'create':