commitshow 0.3.7 → 0.3.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/render.js +1 -5
- package/package.json +1 -1
package/dist/lib/render.js
CHANGED
|
@@ -136,11 +136,7 @@ const BIG_ROWS = 6;
|
|
|
136
136
|
* natively, exactly as `figlet` and oh-my-logo render it. */
|
|
137
137
|
function bigText(text) {
|
|
138
138
|
const rows = Array.from({ length: BIG_ROWS }, () => '');
|
|
139
|
-
|
|
140
|
-
// trailing whitespace, so concatenating with no extra gap still gives
|
|
141
|
-
// a visible 2-col space between adjacent digits. CEO tightened from 1
|
|
142
|
-
// (was reading too far apart at hero size).
|
|
143
|
-
const GAP = '';
|
|
139
|
+
const GAP = ' ';
|
|
144
140
|
for (let i = 0; i < text.length; i++) {
|
|
145
141
|
const ch = text[i];
|
|
146
142
|
const glyph = BIG_DIGITS[ch] ?? BIG_DIGITS[' '];
|