@mutmutco/cli 4.1.2 → 4.1.4

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.
@@ -601,7 +601,8 @@ function planRepoIndexV4Delta(opts) {
601
601
  const baseCommit = opts.baseCommit ? opts.baseCommit.toLowerCase() : null;
602
602
  const full = (fallbackReason) => ({ mode: "full", headCommit, fallbackReason, ...baseCommit ? { baseCommit } : {} });
603
603
  if (opts.forceFull) return full("explicit-full-rebuild");
604
- if (!baseCommit || !COMMIT.test(baseCommit) || baseCommit === headCommit) return full("no-active-authority");
604
+ if (!baseCommit || !COMMIT.test(baseCommit)) return full("no-active-authority");
605
+ if (baseCommit === headCommit) return { mode: "unchanged", baseCommit, headCommit };
605
606
  if (opts.basePipelineCompatible === false) return full("incompatible-base-provenance");
606
607
  if (opts.hasPriorMaterial === false) return full("no-prior-material");
607
608
  const { git: git2 } = opts;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mutmutco/cli",
3
- "version": "4.1.2",
3
+ "version": "4.1.4",
4
4
  "description": "MMI Future CLI — the org dev toolbox and shared cross-IDE engine for every registry-declared MMI coding surface.",
5
5
  "type": "module",
6
6
  "license": "UNLICENSED",