Skip to content

Commit 6442cba

Browse files
authored
Merge pull request #494 from pharindoko/fix-493-cli-no-truncate
fix(cli): output urls are truncated when terminal size is too small
2 parents 6b68d00 + e651ffd commit 6442cba

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

packages/cli/src/actions/helpers.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,8 @@ export class Helpers {
293293
},
294294
],
295295
{ text: { minWidth: 30 }, link: { minWidth: 20 } },
296-
{ 'no-header': true }
296+
297+
{ 'no-header': true, 'no-truncate': true }
297298
);
298299

299300
if (s3bucketPath)
@@ -305,7 +306,7 @@ export class Helpers {
305306
},
306307
],
307308
{ text: { minWidth: 30 }, link: { minWidth: 20 } },
308-
{ 'no-header': true }
309+
{ 'no-header': true, 'no-truncate': true }
309310
);
310311

311312
console.log();
@@ -344,7 +345,7 @@ export class Helpers {
344345
},
345346
],
346347
{ text: { minWidth: 30 }, link: { minWidth: 20 } },
347-
{ 'no-header': true }
348+
{ 'no-header': true, 'no-truncate': true }
348349
);
349350
} else {
350351
cli.table(
@@ -358,7 +359,7 @@ export class Helpers {
358359
},
359360
],
360361
{ text: { minWidth: 30 }, link: { minWidth: 20 } },
361-
{ 'no-header': true }
362+
{ 'no-header': true, 'no-truncate': true }
362363
);
363364
}
364365

0 commit comments

Comments
 (0)