pull-request-split-advisor 3.2.5 → 3.2.6
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 +2 -7
- package/dist/output/report.js +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -393,14 +393,9 @@ async function main() {
|
|
|
393
393
|
` git checkout ${branchFrom}`,
|
|
394
394
|
` git checkout -b ${suggestedBranch}`,
|
|
395
395
|
"",
|
|
396
|
-
"
|
|
397
|
-
"La opción --apply
|
|
396
|
+
"El análisis continúa de forma informativa.",
|
|
397
|
+
"La opción --apply está deshabilitada en esta ejecución."
|
|
398
398
|
], "red");
|
|
399
|
-
const continueAnyway = await ui.confirm("¿Deseas continuar de todas formas (solo análisis, sin aplicar)?");
|
|
400
|
-
if (!continueAnyway) {
|
|
401
|
-
closeReadlineInterface();
|
|
402
|
-
return;
|
|
403
|
-
}
|
|
404
399
|
}
|
|
405
400
|
// ─── Pipeline de análisis ────────────────────────────────────────────────
|
|
406
401
|
ui.spinner.start("Analizando cambios del working tree...");
|
package/dist/output/report.js
CHANGED
|
@@ -519,7 +519,7 @@ export function renderHtmlReport(input) {
|
|
|
519
519
|
<p>${parentNote}</p>
|
|
520
520
|
<p><strong>Comandos recomendados:</strong></p>
|
|
521
521
|
<pre style="background:rgba(0,0,0,.25);padding:10px 14px;border-radius:6px;font-size:.85em;margin:8px 0 0"># Crear la siguiente rama de la cascada\ngit checkout ${esc(cw.branchFrom)}\ngit checkout -b ${esc(cw.suggestedBranch)}</pre>
|
|
522
|
-
<p class="disclaimer-footer" style="margin-top:8px">El apply
|
|
522
|
+
<p class="disclaimer-footer" style="margin-top:8px">Este reporte es informativo. El apply quedó deshabilitado en esta ejecución para preservar la integridad del plan en cascada.</p>
|
|
523
523
|
</div>
|
|
524
524
|
</section>`;
|
|
525
525
|
})() : ""}
|
package/package.json
CHANGED