@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.
- package/dist/commands/config-drift.test.js +73 -1
- package/dist/commands/config-drift.test.js.map +1 -1
- package/dist/commands/init-templates.d.ts +6 -6
- package/dist/commands/init-templates.d.ts.map +1 -1
- package/dist/commands/init-templates.js +8 -7
- package/dist/commands/init-templates.js.map +1 -1
- package/dist/commands/init.test.js +18 -5
- package/dist/commands/init.test.js.map +1 -1
- package/dist/commands/install-hooks.d.ts.map +1 -1
- package/dist/commands/install-hooks.js +58 -0
- package/dist/commands/install-hooks.js.map +1 -1
- package/dist/commands/install-hooks.test.js +460 -5
- package/dist/commands/install-hooks.test.js.map +1 -1
- package/dist/commands/legs.d.ts +259 -0
- package/dist/commands/legs.d.ts.map +1 -0
- package/dist/commands/legs.js +623 -0
- package/dist/commands/legs.js.map +1 -0
- package/dist/commands/legs.test.d.ts +20 -0
- package/dist/commands/legs.test.d.ts.map +1 -0
- package/dist/commands/legs.test.js +1004 -0
- package/dist/commands/legs.test.js.map +1 -0
- package/dist/commands/pre-push-gate-matrix.test.js +14 -0
- package/dist/commands/pre-push-gate-matrix.test.js.map +1 -1
- package/dist/commands/review-fan.d.ts +40 -1
- package/dist/commands/review-fan.d.ts.map +1 -1
- package/dist/commands/review-fan.js +108 -3
- package/dist/commands/review-fan.js.map +1 -1
- package/dist/commands/review-fan.test.js +444 -6
- package/dist/commands/review-fan.test.js.map +1 -1
- package/dist/commands/shield-covariate.test.js +19 -2
- package/dist/commands/shield-covariate.test.js.map +1 -1
- package/dist/commands/shield-nonreview.test.js +140 -1
- package/dist/commands/shield-nonreview.test.js.map +1 -1
- package/dist/commands/shield.d.ts.map +1 -1
- package/dist/commands/shield.js +53 -1
- package/dist/commands/shield.js.map +1 -1
- package/dist/git.d.ts +19 -0
- package/dist/git.d.ts.map +1 -1
- package/dist/git.js +13 -4
- package/dist/git.js.map +1 -1
- package/dist/index.js +40 -0
- package/dist/index.js.map +1 -1
- 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"}
|