@mmnto/cli 1.122.0 → 1.123.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.
Files changed (43) hide show
  1. package/dist/commands/config-drift.test.js +73 -1
  2. package/dist/commands/config-drift.test.js.map +1 -1
  3. package/dist/commands/init-templates.d.ts +6 -6
  4. package/dist/commands/init-templates.d.ts.map +1 -1
  5. package/dist/commands/init-templates.js +8 -7
  6. package/dist/commands/init-templates.js.map +1 -1
  7. package/dist/commands/init.test.js +18 -5
  8. package/dist/commands/init.test.js.map +1 -1
  9. package/dist/commands/install-hooks.d.ts.map +1 -1
  10. package/dist/commands/install-hooks.js +58 -0
  11. package/dist/commands/install-hooks.js.map +1 -1
  12. package/dist/commands/install-hooks.test.js +460 -5
  13. package/dist/commands/install-hooks.test.js.map +1 -1
  14. package/dist/commands/legs.d.ts +259 -0
  15. package/dist/commands/legs.d.ts.map +1 -0
  16. package/dist/commands/legs.js +623 -0
  17. package/dist/commands/legs.js.map +1 -0
  18. package/dist/commands/legs.test.d.ts +20 -0
  19. package/dist/commands/legs.test.d.ts.map +1 -0
  20. package/dist/commands/legs.test.js +1004 -0
  21. package/dist/commands/legs.test.js.map +1 -0
  22. package/dist/commands/pre-push-gate-matrix.test.js +14 -0
  23. package/dist/commands/pre-push-gate-matrix.test.js.map +1 -1
  24. package/dist/commands/review-fan.d.ts +40 -1
  25. package/dist/commands/review-fan.d.ts.map +1 -1
  26. package/dist/commands/review-fan.js +108 -3
  27. package/dist/commands/review-fan.js.map +1 -1
  28. package/dist/commands/review-fan.test.js +444 -6
  29. package/dist/commands/review-fan.test.js.map +1 -1
  30. package/dist/commands/shield-covariate.test.js +19 -2
  31. package/dist/commands/shield-covariate.test.js.map +1 -1
  32. package/dist/commands/shield-nonreview.test.js +140 -1
  33. package/dist/commands/shield-nonreview.test.js.map +1 -1
  34. package/dist/commands/shield.d.ts.map +1 -1
  35. package/dist/commands/shield.js +53 -1
  36. package/dist/commands/shield.js.map +1 -1
  37. package/dist/git.d.ts +19 -0
  38. package/dist/git.d.ts.map +1 -1
  39. package/dist/git.js +13 -4
  40. package/dist/git.js.map +1 -1
  41. package/dist/index.js +40 -0
  42. package/dist/index.js.map +1 -1
  43. package/package.json +2 -2
@@ -0,0 +1,20 @@
1
+ /**
2
+ * `totem legs deposit` / `totem legs gate` (mmnto-ai/totem#2698).
3
+ *
4
+ * The writer is driven against a REAL temp git repo, because its whole job is
5
+ * to bind a deposit to a sha this repo can resolve — a mocked `rev-parse`
6
+ * would fixture away the only thing under test. Config loading is mocked (the
7
+ * `shield-covariate.test.ts` precedent) so no jiti / real config is needed.
8
+ *
9
+ * The gate is driven through its derivation seam (`runLegsGate` + `LegsGateDeps`)
10
+ * with an injected git adapter and a temp store: the five states are then
11
+ * exercised without a fixture repo per case, and "not owed never consults the
12
+ * store" can be asserted MECHANICALLY — a corrupt file is planted in the store
13
+ * whose sensor row is impossible to produce without reading it.
14
+ *
15
+ * Control bytes in fixtures are built with `String.fromCharCode` on purpose:
16
+ * this repo has a banked incident where an editing tool decoded a `\u`/`\x`
17
+ * escape in source into a RAW control byte.
18
+ */
19
+ export {};
20
+ //# sourceMappingURL=legs.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"legs.test.d.ts","sourceRoot":"","sources":["../../src/commands/legs.test.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG"}