harnessed 3.9.22 → 3.9.23
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.mjs +6 -3
- package/dist/cli.mjs.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -1231,7 +1231,7 @@ var init_auto_install = __esm({
|
|
|
1231
1231
|
|
|
1232
1232
|
// package.json
|
|
1233
1233
|
var package_default = {
|
|
1234
|
-
version: "3.9.
|
|
1234
|
+
version: "3.9.23"};
|
|
1235
1235
|
|
|
1236
1236
|
// src/manifest/errors.ts
|
|
1237
1237
|
function instancePathToKeyPath(instancePath) {
|
|
@@ -5056,10 +5056,13 @@ async function runMasterOrchestrator(masterName, context, packageRoot, spawnDriv
|
|
|
5056
5056
|
reason: passes ? void 0 : `gate ${clause.gate} = false`
|
|
5057
5057
|
});
|
|
5058
5058
|
} catch (e) {
|
|
5059
|
+
console.warn(
|
|
5060
|
+
`\u26A0\uFE0F master ${masterName} sub ${clause.sub} gate ${clause.gate} eval failed (${e.message}); proceeding with sub as if gate fired=true (ADR 0029 fail-soft).`
|
|
5061
|
+
);
|
|
5059
5062
|
gateEvalled.push({
|
|
5060
5063
|
clause,
|
|
5061
|
-
passes:
|
|
5062
|
-
reason: `gate eval error: ${e.message}`
|
|
5064
|
+
passes: true,
|
|
5065
|
+
reason: `gate eval error (fail-soft fires=true): ${e.message}`
|
|
5063
5066
|
});
|
|
5064
5067
|
}
|
|
5065
5068
|
}
|