Skip to content

Commit c3f7d43

Browse files
committed
fix: do not wrap < 80 columns in CLI
1 parent 7c8667e commit c3f7d43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app-config/src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ function fileTypeForFormatOption(option: string): FileType {
309309

310310
export const cli = yargs
311311
.scriptName('app-config')
312-
.wrap(yargs.terminalWidth() - 5)
312+
.wrap(Math.max(yargs.terminalWidth() - 5, 80))
313313
.strict()
314314
.version()
315315
.alias('v', 'version')

0 commit comments

Comments
 (0)