Skip to content

Commit

Permalink
refactor(CLI): Improve timestamp visiblity in deploy list output
Browse files Browse the repository at this point in the history
  • Loading branch information
medikoo committed Nov 9, 2021
1 parent 5399281 commit 55146c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions 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');
Expand Down Expand Up @@ -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]}`);
Expand Down

0 comments on commit 55146c4

Please sign in to comment.