Skip to content

Commit f39599e

Browse files
committed
fix(cli): cfonts spacing
1 parent 06d3a99 commit f39599e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

addons/cli/src/main/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,8 @@ export default () => {
107107
return cfonts.render(character, {
108108
font: 'tiny',
109109
colors: [colors[index % colors.length]],
110-
space: false,
110+
space: false, // docs on npmjs.com
111+
spaceless: true, // actually (cli argument)
111112
})['array'] as string[]
112113
}).reduce((lines, array) => {
113114
return array.map((line, index) => String(lines[index] ?? '') + line)

0 commit comments

Comments
 (0)