From 55146c4595024b0e3702dc2023264af784b906e9 Mon Sep 17 00:00:00 2001 From: Mariusz Nowak Date: Tue, 9 Nov 2021 12:09:31 +0100 Subject: [PATCH] refactor(CLI): Improve timestamp visiblity in `deploy list` output --- lib/plugins/aws/deployList.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/plugins/aws/deployList.js b/lib/plugins/aws/deployList.js index f696a97185a..6d378cd8ed8 100644 --- a/lib/plugins/aws/deployList.js +++ b/lib/plugins/aws/deployList.js @@ -1,6 +1,6 @@ 'use strict'; -const { legacy, log, writeText, style } = require('@serverless/utils/log'); +const { legacy, log, writeText } = require('@serverless/utils/log'); const validate = require('./lib/validate'); const findAndGroupDeployments = require('./utils/findAndGroupDeployments'); const setBucketName = require('./lib/setBucketName'); @@ -61,8 +61,8 @@ class AwsDeployList { `${String(date.getUTCHours()).padStart(2, 0)}:${String(date.getUTCMinutes()).padStart( 2, 0 - )}:${String(date.getUTCSeconds()).padStart(2, 0)} UTC ` + - `${style.aside(`(${match[1]})`)}`, + )}:${String(date.getUTCSeconds()).padStart(2, 0)} UTC`, + `Timestamp: ${match[1]}`, 'Files:' ); legacy.log(`Timestamp: ${match[1]}`);