@mutmutco/hub 4.1.8 → 4.1.9
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/index.cjs +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3272,7 +3272,7 @@ function updateHeader(target, dryRun = false) {
|
|
|
3272
3272
|
function renderRowLines(row, ctx) {
|
|
3273
3273
|
const paint = (kind, text) => ctx.color ? colorFor(kind) + text + RESET : text;
|
|
3274
3274
|
const versions = row.from !== null && row.from !== row.to ? `${row.from} \u2192 ${row.to}` : `${row.to}`;
|
|
3275
|
-
const glyph = ctx.tty ? glyphFor(row.kind) +
|
|
3275
|
+
const glyph = ctx.tty ? glyphFor(row.kind) + " " : "";
|
|
3276
3276
|
const status = statusText(row.kind, ctx.dryRun).padEnd(ctx.statusWidth);
|
|
3277
3277
|
const prefix = " " + row.name.padEnd(NAME_WIDTH) + " " + versions.padEnd(VERSION_WIDTH) + " " + paint(row.kind, glyph + status);
|
|
3278
3278
|
return row.note ? noteLines(prefix, row.note, ctx.width) : [prefix.replace(/\s+$/, "")];
|
package/package.json
CHANGED