@codyswann/lisa 3.64.2 → 3.64.3
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/sync-cmd.d.ts +2 -1
- package/dist/cli/sync-cmd.d.ts.map +1 -1
- package/dist/cli/sync-cmd.js +14 -1
- package/dist/cli/sync-cmd.js.map +1 -1
- package/dist/configs/vitest/scratch-setup.d.ts.map +1 -1
- package/dist/configs/vitest/scratch-setup.js +47 -2
- package/dist/configs/vitest/scratch-setup.js.map +1 -1
- package/dist/core/upstream-evidence-manifest.d.ts.map +1 -1
- package/dist/core/upstream-evidence-manifest.js +9 -1
- package/dist/core/upstream-evidence-manifest.js.map +1 -1
- package/dist/sync/artifact-sync.d.ts +50 -0
- package/dist/sync/artifact-sync.d.ts.map +1 -0
- package/dist/sync/artifact-sync.js +142 -0
- package/dist/sync/artifact-sync.js.map +1 -0
- package/dist/sync/config-sync.d.ts +2 -16
- package/dist/sync/config-sync.d.ts.map +1 -1
- package/dist/sync/config-sync.js +12 -59
- package/dist/sync/config-sync.js.map +1 -1
- package/dist/sync/stryker-thresholds-ownership.d.ts +111 -0
- package/dist/sync/stryker-thresholds-ownership.d.ts.map +1 -0
- package/dist/sync/stryker-thresholds-ownership.js +227 -0
- package/dist/sync/stryker-thresholds-ownership.js.map +1 -0
- package/package.json +1 -1
- package/plugins/lisa/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-agy/plugin.json +1 -1
- package/plugins/lisa-cdk/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk-agy/plugin.json +1 -1
- package/plugins/lisa-cdk-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-expo/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-expo/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-expo-agy/plugin.json +1 -1
- package/plugins/lisa-expo-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-expo-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-harper-fabric/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-harper-fabric/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-harper-fabric-agy/plugin.json +1 -1
- package/plugins/lisa-harper-fabric-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-harper-fabric-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs-agy/plugin.json +1 -1
- package/plugins/lisa-nestjs-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-openclaw/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-openclaw/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-openclaw-agy/plugin.json +1 -1
- package/plugins/lisa-openclaw-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-openclaw-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-phaser/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-phaser/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-phaser-agy/plugin.json +1 -1
- package/plugins/lisa-phaser-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-phaser-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-rails/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-rails/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-rails-agy/plugin.json +1 -1
- package/plugins/lisa-rails-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-rails-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript-agy/plugin.json +1 -1
- package/plugins/lisa-typescript-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-wiki/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-wiki/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-wiki-agy/plugin.json +1 -1
- package/plugins/lisa-wiki-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-wiki-cursor/.claude-plugin/plugin.json +1 -1
- package/typescript/create-only/stryker.conf.json +1 -0
package/dist/cli/sync-cmd.d.ts
CHANGED
|
@@ -15,7 +15,8 @@ export declare function printSyncReport(report: SyncReport): void;
|
|
|
15
15
|
* Run the `lisa sync` command.
|
|
16
16
|
* @param targetPath - Project path argument (defaults to the current directory)
|
|
17
17
|
* @param options - CLI options
|
|
18
|
-
* @returns Exit code (0 on success, 1 when required keys are missing
|
|
18
|
+
* @returns Exit code (0 on success, 1 when required keys are missing or the
|
|
19
|
+
* config-owned mutation floor diverges from stryker.conf.json)
|
|
19
20
|
*/
|
|
20
21
|
export declare function runSync(targetPath: string | undefined, options?: SyncCmdOptions): Promise<number>;
|
|
21
22
|
//# sourceMappingURL=sync-cmd.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sync-cmd.d.ts","sourceRoot":"","sources":["../../src/cli/sync-cmd.ts"],"names":[],"mappings":"AAMA,OAAO,EAAiB,KAAK,UAAU,EAAE,MAAM,wBAAwB,CAAC;
|
|
1
|
+
{"version":3,"file":"sync-cmd.d.ts","sourceRoot":"","sources":["../../src/cli/sync-cmd.ts"],"names":[],"mappings":"AAMA,OAAO,EAAiB,KAAK,UAAU,EAAE,MAAM,wBAAwB,CAAC;AAGxE,mCAAmC;AACnC,MAAM,WAAW,cAAc;IAC7B,+CAA+C;IAC/C,QAAQ,CAAC,MAAM,CAAC,EAAE,OAAO,CAAC;IAC1B,8DAA8D;IAC9D,QAAQ,CAAC,IAAI,CAAC,EAAE,OAAO,CAAC;CACzB;AAED;;;GAGG;AACH,wBAAgB,eAAe,CAAC,MAAM,EAAE,UAAU,GAAG,IAAI,CAaxD;AAED;;;;;;GAMG;AACH,wBAAsB,OAAO,CAC3B,UAAU,EAAE,MAAM,GAAG,SAAS,EAC9B,OAAO,GAAE,cAAmB,GAC3B,OAAO,CAAC,MAAM,CAAC,CAsBjB"}
|
package/dist/cli/sync-cmd.js
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
import * as path from "node:path";
|
|
7
7
|
import { runConfigSync } from "../sync/config-sync.js";
|
|
8
|
+
import { MutationFloorDivergenceError } from "../sync/stryker-thresholds-ownership.js";
|
|
8
9
|
/**
|
|
9
10
|
* Print a sync report in human-readable form.
|
|
10
11
|
* @param report - Report returned by the sync engine
|
|
@@ -25,13 +26,25 @@ export function printSyncReport(report) {
|
|
|
25
26
|
* Run the `lisa sync` command.
|
|
26
27
|
* @param targetPath - Project path argument (defaults to the current directory)
|
|
27
28
|
* @param options - CLI options
|
|
28
|
-
* @returns Exit code (0 on success, 1 when required keys are missing
|
|
29
|
+
* @returns Exit code (0 on success, 1 when required keys are missing or the
|
|
30
|
+
* config-owned mutation floor diverges from stryker.conf.json)
|
|
29
31
|
*/
|
|
30
32
|
export async function runSync(targetPath, options = {}) {
|
|
31
33
|
const destDir = path.resolve(targetPath ?? ".");
|
|
34
|
+
// A divergence is a refusal, not a crash: print the diagnosis the way an
|
|
35
|
+
// operator can act on it rather than letting a stack trace reach the user.
|
|
32
36
|
const report = await runConfigSync(destDir, {
|
|
33
37
|
dryRun: options.dryRun === true,
|
|
38
|
+
}).catch((error) => {
|
|
39
|
+
if (error instanceof MutationFloorDivergenceError) {
|
|
40
|
+
console.error(error.message);
|
|
41
|
+
return undefined;
|
|
42
|
+
}
|
|
43
|
+
throw error;
|
|
34
44
|
});
|
|
45
|
+
if (report === undefined) {
|
|
46
|
+
return 1;
|
|
47
|
+
}
|
|
35
48
|
if (options.json === true) {
|
|
36
49
|
console.log(JSON.stringify(report, null, 2));
|
|
37
50
|
}
|
package/dist/cli/sync-cmd.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sync-cmd.js","sourceRoot":"","sources":["../../src/cli/sync-cmd.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;AAClC,OAAO,EAAE,aAAa,EAAmB,MAAM,wBAAwB,CAAC;
|
|
1
|
+
{"version":3,"file":"sync-cmd.js","sourceRoot":"","sources":["../../src/cli/sync-cmd.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;AAClC,OAAO,EAAE,aAAa,EAAmB,MAAM,wBAAwB,CAAC;AACxE,OAAO,EAAE,4BAA4B,EAAE,MAAM,yCAAyC,CAAC;AAUvF;;;GAGG;AACH,MAAM,UAAU,eAAe,CAAC,MAAkB;IAChD,MAAM,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,EAAE,CAAC;IACjD,IAAI,MAAM,CAAC,OAAO,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QAChC,OAAO,CAAC,GAAG,CAAC,GAAG,MAAM,oCAAoC,CAAC,CAAC;IAC7D,CAAC;IACD,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE;QAC9B,OAAO,CAAC,GAAG,CAAC,GAAG,MAAM,GAAG,MAAM,CAAC,IAAI,KAAK,MAAM,CAAC,GAAG,MAAM,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC;IAC3E,CAAC,CAAC,CAAC;IACH,MAAM,CAAC,eAAe,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE;QACvC,OAAO,CAAC,IAAI,CACV,GAAG,MAAM,qBAAqB,OAAO,CAAC,GAAG,+BAA+B,OAAO,CAAC,SAAS,EAAE,CAC5F,CAAC;IACJ,CAAC,CAAC,CAAC;AACL,CAAC;AAED;;;;;;GAMG;AACH,MAAM,CAAC,KAAK,UAAU,OAAO,CAC3B,UAA8B,EAC9B,UAA0B,EAAE;IAE5B,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,UAAU,IAAI,GAAG,CAAC,CAAC;IAChD,yEAAyE;IACzE,2EAA2E;IAC3E,MAAM,MAAM,GAAG,MAAM,aAAa,CAAC,OAAO,EAAE;QAC1C,MAAM,EAAE,OAAO,CAAC,MAAM,KAAK,IAAI;KAChC,CAAC,CAAC,KAAK,CAAC,CAAC,KAAc,EAAE,EAAE;QAC1B,IAAI,KAAK,YAAY,4BAA4B,EAAE,CAAC;YAClD,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;YAC7B,OAAO,SAAS,CAAC;QACnB,CAAC;QACD,MAAM,KAAK,CAAC;IACd,CAAC,CAAC,CAAC;IACH,IAAI,MAAM,KAAK,SAAS,EAAE,CAAC;QACzB,OAAO,CAAC,CAAC;IACX,CAAC;IACD,IAAI,OAAO,CAAC,IAAI,KAAK,IAAI,EAAE,CAAC;QAC1B,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,SAAS,CAAC,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;IAC/C,CAAC;SAAM,CAAC;QACN,eAAe,CAAC,MAAM,CAAC,CAAC;IAC1B,CAAC;IACD,OAAO,MAAM,CAAC,eAAe,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACnD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scratch-setup.d.ts","sourceRoot":"","sources":["../../../src/configs/vitest/scratch-setup.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"scratch-setup.d.ts","sourceRoot":"","sources":["../../../src/configs/vitest/scratch-setup.ts"],"names":[],"mappings":"AAsEA;;;;;;;;;GASG;AACH,eAAO,MAAM,kBAAkB,QAAO,MAqDrC,CAAC"}
|
|
@@ -16,6 +16,9 @@
|
|
|
16
16
|
* /tmp/probe
|
|
17
17
|
* ```
|
|
18
18
|
*
|
|
19
|
+
* A signalled exit is covered too, which is not obvious and is the whole of
|
|
20
|
+
* CodySwannGT/lisa#2950: see the signal handlers in `installScratchRoot`.
|
|
21
|
+
*
|
|
19
22
|
* Because the assignment mutates the process environment, subprocesses the
|
|
20
23
|
* tests spawn inherit the redirection too — a fixture's `git`, `npm pack` or
|
|
21
24
|
* `tsc` child writes into the same bounded root, so a child that outlives its
|
|
@@ -29,6 +32,24 @@
|
|
|
29
32
|
import * as fs from "node:fs";
|
|
30
33
|
import { env } from "node:process";
|
|
31
34
|
import { SCRATCH_ROOT_ENV, reclaimAndCreateRunRoot, removeScratchDir, scratchBaseDir, scratchNamespaceDir, } from "./scratch.js";
|
|
35
|
+
/**
|
|
36
|
+
* Signals a worker is reaped with, each of which skips `exit` by default.
|
|
37
|
+
*
|
|
38
|
+
* `SIGTERM` is the one measured in this repository — it is how vitest's
|
|
39
|
+
* `forks` pool ends a worker. `SIGINT` and `SIGHUP` are here because they
|
|
40
|
+
* reach the same process by the same route with the same default action: an
|
|
41
|
+
* operator pressing ctrl-C, and a terminal closing on a run left going. A
|
|
42
|
+
* handler that covered only the case that happened to be measured would leave
|
|
43
|
+
* the other two producing exactly the residue this removes.
|
|
44
|
+
*
|
|
45
|
+
* `SIGKILL` is deliberately absent — it cannot be caught, which is precisely
|
|
46
|
+
* why reclaim-on-start exists and is tested separately.
|
|
47
|
+
*/
|
|
48
|
+
const REAPING_SIGNALS = [
|
|
49
|
+
"SIGTERM",
|
|
50
|
+
"SIGINT",
|
|
51
|
+
"SIGHUP",
|
|
52
|
+
];
|
|
32
53
|
/** Key under which the per-process run root is memoised. */
|
|
33
54
|
const RUN_ROOT_KEY = "__lisaScratchRunRoot__";
|
|
34
55
|
/**
|
|
@@ -59,11 +80,35 @@ export const installScratchRoot = () => {
|
|
|
59
80
|
env["TMPDIR"] = root;
|
|
60
81
|
env["TMP"] = root;
|
|
61
82
|
env["TEMP"] = root;
|
|
62
|
-
// Covers an ordinary exit, including one where tests failed.
|
|
63
|
-
// does not run this — nothing can — and is handled by the next run's sweep.
|
|
83
|
+
// Covers an ordinary exit, including one where tests failed.
|
|
64
84
|
process.once("exit", () => {
|
|
65
85
|
removeScratchDir(root);
|
|
66
86
|
});
|
|
87
|
+
// And covers the exit this suite ACTUALLY takes, which is not an ordinary
|
|
88
|
+
// one. Measured on vitest 4.1.9, `forks` pool, by recording every lifecycle
|
|
89
|
+
// event a worker reaches: the pool ends a worker with SIGTERM, and node's
|
|
90
|
+
// default action for SIGTERM terminates the process WITHOUT running `exit`
|
|
91
|
+
// handlers. So the handler above — the only mechanism that removes a run's
|
|
92
|
+
// own root — never ran for any worker, and a completely green run left its
|
|
93
|
+
// root behind every time (CodySwannGT/lisa#2950).
|
|
94
|
+
//
|
|
95
|
+
// That was invisible for the usual reason: the next run's sweep reclaims a
|
|
96
|
+
// root whose pid is dead, so the residue disappeared before anyone looked
|
|
97
|
+
// for it, and the namespace never grew. The behaviour was reported as
|
|
98
|
+
// present because its effect was eventually produced by something else.
|
|
99
|
+
//
|
|
100
|
+
// The same probe shows a worker DOES reach `exit` once a listener for the
|
|
101
|
+
// signal exists, because installing one displaces node's default action.
|
|
102
|
+
// Removing the listener and re-raising restores it, so the process still
|
|
103
|
+
// dies of the signal it was sent, with the status the pool expects — this
|
|
104
|
+
// buys the cleanup, not a different lifecycle.
|
|
105
|
+
for (const signal of REAPING_SIGNALS) {
|
|
106
|
+
process.once(signal, () => {
|
|
107
|
+
removeScratchDir(root);
|
|
108
|
+
process.removeAllListeners(signal);
|
|
109
|
+
process.kill(process.pid, signal);
|
|
110
|
+
});
|
|
111
|
+
}
|
|
67
112
|
return root;
|
|
68
113
|
};
|
|
69
114
|
installScratchRoot();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scratch-setup.js","sourceRoot":"","sources":["../../../src/configs/vitest/scratch-setup.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"scratch-setup.js","sourceRoot":"","sources":["../../../src/configs/vitest/scratch-setup.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,OAAO,KAAK,EAAE,MAAM,SAAS,CAAC;AAC9B,OAAO,EAAE,GAAG,EAAE,MAAM,cAAc,CAAC;AAEnC,OAAO,EACL,gBAAgB,EAChB,uBAAuB,EACvB,gBAAgB,EAChB,cAAc,EACd,mBAAmB,GACpB,MAAM,cAAc,CAAC;AAEtB;;;;;;;;;;;;GAYG;AACH,MAAM,eAAe,GAA8B;IACjD,SAAS;IACT,QAAQ;IACR,QAAQ;CACT,CAAC;AAEF,4DAA4D;AAC5D,MAAM,YAAY,GAAG,wBAAwB,CAAC;AAQ9C;;;;;;;;;GASG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAAG,GAAW,EAAE;IAC7C,MAAM,KAAK,GAAG,UAA2B,CAAC;IAC1C,MAAM,QAAQ,GAAG,KAAK,CAAC,YAAY,CAAC,CAAC;IACrC,IAAI,QAAQ,KAAK,SAAS,IAAI,EAAE,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,CAAC;QACtD,OAAO,QAAQ,CAAC;IAClB,CAAC;IAED,0EAA0E;IAC1E,8EAA8E;IAC9E,4EAA4E;IAC5E,0EAA0E;IAC1E,kEAAkE;IAClE,MAAM,IAAI,GAAG,cAAc,EAAE,CAAC;IAC9B,MAAM,IAAI,GAAG,uBAAuB,CAAC,mBAAmB,EAAE,CAAC,CAAC;IAE5D,KAAK,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC;IAC3B,GAAG,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC;IAC7B,GAAG,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC;IACrB,GAAG,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC;IAClB,GAAG,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IAEnB,6DAA6D;IAC7D,OAAO,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,EAAE;QACxB,gBAAgB,CAAC,IAAI,CAAC,CAAC;IACzB,CAAC,CAAC,CAAC;IAEH,0EAA0E;IAC1E,4EAA4E;IAC5E,0EAA0E;IAC1E,2EAA2E;IAC3E,2EAA2E;IAC3E,2EAA2E;IAC3E,kDAAkD;IAClD,EAAE;IACF,2EAA2E;IAC3E,0EAA0E;IAC1E,sEAAsE;IACtE,wEAAwE;IACxE,EAAE;IACF,0EAA0E;IAC1E,yEAAyE;IACzE,yEAAyE;IACzE,0EAA0E;IAC1E,+CAA+C;IAC/C,KAAK,MAAM,MAAM,IAAI,eAAe,EAAE,CAAC;QACrC,OAAO,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,EAAE;YACxB,gBAAgB,CAAC,IAAI,CAAC,CAAC;YACvB,OAAO,CAAC,kBAAkB,CAAC,MAAM,CAAC,CAAC;YACnC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,EAAE,MAAM,CAAC,CAAC;QACpC,CAAC,CAAC,CAAC;IACL,CAAC;IAED,OAAO,IAAI,CAAC;AACd,CAAC,CAAC;AAEF,kBAAkB,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"upstream-evidence-manifest.d.ts","sourceRoot":"","sources":["../../src/core/upstream-evidence-manifest.ts"],"names":[],"mappings":"AACA,iFAAiF;AACjF,eAAO,MAAM,0BAA0B,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAg3EpE,CAAC;AAEL,4EAA4E;AAC5E,eAAO,MAAM,yBAAyB,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"upstream-evidence-manifest.d.ts","sourceRoot":"","sources":["../../src/core/upstream-evidence-manifest.ts"],"names":[],"mappings":"AACA,iFAAiF;AACjF,eAAO,MAAM,0BAA0B,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAg3EpE,CAAC;AAEL,4EAA4E;AAC5E,eAAO,MAAM,yBAAyB,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,CA69OjE,CAAC;AAEL,sFAAsF;AACtF,eAAO,MAAM,uBAAuB,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,CAk6I/D,CAAC"}
|
|
@@ -1197,7 +1197,7 @@ export const UPSTREAM_EVIDENCE_MANIFEST = Object.freeze({
|
|
|
1197
1197
|
"typescript/create-only/jest.config.local.ts": "5d5603e5b79ab0379cda135159ad83aef3ec914fa037c83fc7176363b64c8422",
|
|
1198
1198
|
"typescript/create-only/jest.thresholds.json": "ce04fe30ad6139f734dbc56d92a801c11cfd86a0d9e49c06c1c2d0a137beeffd",
|
|
1199
1199
|
"typescript/create-only/mutation.gate.json": "53adce2f6ef53f4a46d896210828610bf4f9b1f45ebbf6c7cf0addf9982a161a",
|
|
1200
|
-
"typescript/create-only/stryker.conf.json": "
|
|
1200
|
+
"typescript/create-only/stryker.conf.json": "60307e1644b37b73458ecc842199c7efc565f6d2eb3e2a52af9ecb4236ae2014",
|
|
1201
1201
|
"typescript/create-only/tsconfig.local.json": "727931ff950c5606b74040963429407c820743dfd20cb1732656eca963575208",
|
|
1202
1202
|
"typescript/create-only/vitest.config.local.ts": "a70a6d2a4f210304cf84b8017b2c628c0ef689712c4f745ef45e1fcfffac4050",
|
|
1203
1203
|
"typescript/create-only/vitest.thresholds.json": "ce04fe30ad6139f734dbc56d92a801c11cfd86a0d9e49c06c1c2d0a137beeffd",
|
|
@@ -7449,12 +7449,14 @@ export const UPSTREAM_SURFACE_MANIFEST = Object.freeze({
|
|
|
7449
7449
|
"src/strategies/strategy.interface.ts": true,
|
|
7450
7450
|
"src/strategies/tagged-merge-types.ts": true,
|
|
7451
7451
|
"src/strategies/tagged-merge.ts": true,
|
|
7452
|
+
"src/sync/artifact-sync.ts": true,
|
|
7452
7453
|
"src/sync/config-sync.ts": true,
|
|
7453
7454
|
"src/sync/json-path.ts": true,
|
|
7454
7455
|
"src/sync/legacy-aliases.ts": true,
|
|
7455
7456
|
"src/sync/legacy-monitor-thresholds.ts": true,
|
|
7456
7457
|
"src/sync/lifecycle-defaults.ts": true,
|
|
7457
7458
|
"src/sync/registry.ts": true,
|
|
7459
|
+
"src/sync/stryker-thresholds-ownership.ts": true,
|
|
7458
7460
|
"src/sync/sync-population.ts": true,
|
|
7459
7461
|
"src/transaction/backup.ts": true,
|
|
7460
7462
|
"src/transaction/index.ts": true,
|
|
@@ -7574,9 +7576,11 @@ export const UPSTREAM_SURFACE_MANIFEST = Object.freeze({
|
|
|
7574
7576
|
"tests/fixtures/wiki-safety/allowed-contacts.md": true,
|
|
7575
7577
|
"tests/fixtures/wiki-safety/redaction-source.md": true,
|
|
7576
7578
|
"tests/helpers/__fixtures__/margin-guard-case.ts": true,
|
|
7579
|
+
"tests/helpers/__fixtures__/scratch-teardown-case.ts": true,
|
|
7577
7580
|
"tests/helpers/__fixtures__/wiki-status-fixture.ts": true,
|
|
7578
7581
|
"tests/helpers/cpu-budget.ts": true,
|
|
7579
7582
|
"tests/helpers/gate-capture.ts": true,
|
|
7583
|
+
"tests/helpers/hardcoded-temp-path-scan.ts": true,
|
|
7580
7584
|
"tests/helpers/hook-roster.ts": true,
|
|
7581
7585
|
"tests/helpers/io-latency-budget.ts": true,
|
|
7582
7586
|
"tests/helpers/nightly-e2e-gate-harness.ts": true,
|
|
@@ -7859,6 +7863,7 @@ export const UPSTREAM_SURFACE_MANIFEST = Object.freeze({
|
|
|
7859
7863
|
"tests/unit/config/gate-task-shipped-to-templates.test.ts": true,
|
|
7860
7864
|
"tests/unit/config/gitleaks-template.test.ts": true,
|
|
7861
7865
|
"tests/unit/config/governed-script-composition-points.test.ts": true,
|
|
7866
|
+
"tests/unit/config/hardcoded-temp-path-detector.test.ts": true,
|
|
7862
7867
|
"tests/unit/config/harper-fabric-template.test.ts": true,
|
|
7863
7868
|
"tests/unit/config/jest-base.test.ts": true,
|
|
7864
7869
|
"tests/unit/config/jest-expo.test.ts": true,
|
|
@@ -7877,6 +7882,7 @@ export const UPSTREAM_SURFACE_MANIFEST = Object.freeze({
|
|
|
7877
7882
|
"tests/unit/config/postinstall-cloud-session-guard.test.ts": true,
|
|
7878
7883
|
"tests/unit/config/rails-template.test.ts": true,
|
|
7879
7884
|
"tests/unit/config/release-push-retry.test.ts": true,
|
|
7885
|
+
"tests/unit/config/scratch-run-root-teardown.test.ts": true,
|
|
7880
7886
|
"tests/unit/config/security-pin-floors.test.ts": true,
|
|
7881
7887
|
"tests/unit/config/shipped-mjs-roster.test.ts": true,
|
|
7882
7888
|
"tests/unit/config/template-script-toolchain.test.ts": true,
|
|
@@ -8486,6 +8492,8 @@ export const UPSTREAM_SURFACE_MANIFEST = Object.freeze({
|
|
|
8486
8492
|
"tests/unit/sync/health-schedule.test.ts": true,
|
|
8487
8493
|
"tests/unit/sync/legacy-monitor-thresholds.test.ts": true,
|
|
8488
8494
|
"tests/unit/sync/linear-workflow-registry.test.ts": true,
|
|
8495
|
+
"tests/unit/sync/mutation-floor-divergence.test.ts": true,
|
|
8496
|
+
"tests/unit/sync/stryker-thresholds-ownership.test.ts": true,
|
|
8489
8497
|
"tests/unit/templates/dependency-decisions-template.test.ts": true,
|
|
8490
8498
|
"tests/unit/templates/lisa-dependency-decisions-seed.test.ts": true,
|
|
8491
8499
|
"tests/unit/templates/project-learnings-template.test.ts": true,
|