@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.
Files changed (2) hide show
  1. package/dist/index.cjs +1 -1
  2. 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) + (row.kind === "updated" || row.kind === "retry" ? "" : " ") : "";
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mutmutco/hub",
3
- "version": "4.1.8",
3
+ "version": "4.1.9",
4
4
  "description": "Install and maintain the MMI CLI and every present host surface from one release-gated Hub command.",
5
5
  "type": "module",
6
6
  "license": "UNLICENSED",