pull-request-split-advisor 3.2.10 → 3.2.11

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/cli.js CHANGED
@@ -409,7 +409,7 @@ async function main() {
409
409
  ui.table(["SHA", "Mensaje"], sibling.commits.map((c) => [c.sha, c.subject]), true);
410
410
  }
411
411
  }
412
- ui.subsection(`#${siblings.length + 1} ${currentBranch} rama actual`);
412
+ ui.subsection(`#${siblings.length + 1} ${currentBranch} rama actual`);
413
413
  if (currentBranchCommits.length === 0) {
414
414
  ui.muted(" Sin commits detectados.");
415
415
  }
@@ -511,7 +511,7 @@ export function renderHtmlReport(input) {
511
511
  ];
512
512
  const cascadeStateHtml = allBranches.map((branch, idx) => {
513
513
  const num = idx + 1;
514
- const color = branch.isCurrent ? "#e2e8f0" : "#94a3b8";
514
+ const color = branch.isCurrent ? "#4ade80" : "#94a3b8";
515
515
  const commitsHtml = branch.commits.length > 0
516
516
  ? `<ul style="margin:4px 0 0 0;padding:0;list-style:none">${branch.commits.map((c) => `<li style="font-size:.82em;padding:2px 0">` +
517
517
  `<code style="color:#60a5fa;margin-right:8px">${esc(c.sha)}</code>` +
@@ -521,7 +521,7 @@ export function renderHtmlReport(input) {
521
521
  <div style="display:flex;align-items:center;gap:6px;margin-bottom:4px">
522
522
  <span style="font-size:.75em;font-weight:700;opacity:.5;min-width:22px">#${num}</span>
523
523
  <code style="display:inline-block;background:#fff;color:#1e293b;font-size:.8em;font-weight:600;padding:1px 7px;border-radius:4px;letter-spacing:.01em">${esc(branch.name)}</code>
524
- ${branch.isCurrent ? `<span style="font-size:.75em;color:#e2e8f0;opacity:.7">← rama actual</span>` : ""}
524
+ ${branch.isCurrent ? `<span style="font-size:.75em;color:#4ade80;font-weight:600">← rama actual</span>` : ""}
525
525
  </div>
526
526
  ${commitsHtml}
527
527
  </div>`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pull-request-split-advisor",
3
- "version": "3.2.10",
3
+ "version": "3.2.11",
4
4
  "description": "CLI that analyses your Git working tree and suggests how to split changes into smaller, reviewable pull requests and commits.",
5
5
  "keywords": [
6
6
  "git",