Skip to content

Commit ed6301d

Browse files
committedSep 23, 2021
chore(deps): remove 'wide-align'
1 parent 8421974 commit ed6301d

File tree

3 files changed

+319
-415
lines changed

3 files changed

+319
-415
lines changed
 

‎lib/cli/one-and-dones.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
* @private
99
*/
1010

11-
const align = require('wide-align');
1211
const Mocha = require('../mocha');
1312

1413
/**
@@ -30,7 +29,7 @@ const showKeys = obj => {
3029
.forEach(key => {
3130
const description = obj[key].description;
3231
console.log(
33-
` ${align.left(key, maxKeyLength + 1)}${
32+
` ${key.padEnd(maxKeyLength + 1)}${
3433
description ? `- ${description}` : ''
3534
}`
3635
);

0 commit comments

Comments
 (0)