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.
@@ -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
- // 0 explicit gutter — each glyph already carries its own leading and
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[' '];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "commitshow",
3
- "version": "0.3.7",
3
+ "version": "0.3.10",
4
4
  "description": "commit.show CLI — audit any vibe-coded project from your terminal.",
5
5
  "type": "module",
6
6
  "bin": {