@mutmutco/cli 3.46.0 → 3.47.0
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/main.cjs +3 -0
- package/package.json +1 -1
package/dist/main.cjs
CHANGED
|
@@ -14788,6 +14788,9 @@ function deriveHotfixState(f) {
|
|
|
14788
14788
|
if (!f.branchExists && !f.pr && !f.tagPushed && !f.releaseExists) {
|
|
14789
14789
|
return { state: "not-started", next: `mmi-cli hotfix start --from <pr#|sha> (would mint ${f.tag})` };
|
|
14790
14790
|
}
|
|
14791
|
+
if (!f.pr && !f.branchExists && f.tagPushed && f.releaseExists) {
|
|
14792
|
+
return { state: "complete", next: "nothing \u2014 that version is a completed release, not a hotfix in flight" };
|
|
14793
|
+
}
|
|
14791
14794
|
if (!f.pr) {
|
|
14792
14795
|
return { state: "branch-pushed (no PR)", next: `mmi-cli hotfix start --from <pr#|sha> (resumes at the PR step for ${f.tag})` };
|
|
14793
14796
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mutmutco/cli",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.47.0",
|
|
4
4
|
"description": "MMI Future CLI — the org dev toolbox (board, registry, keyless secrets, release train, bootstrap, doctor) and the cross-IDE engine the plugin's session-start hook drives.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "UNLICENSED",
|