loomrail 0.1.0 → 0.1.1
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/apps/cli/dist/index.js +21 -12
- package/package.json +1 -1
package/apps/cli/dist/index.js
CHANGED
|
@@ -13085,9 +13085,10 @@ var projectVerificationAcceptanceGate = (input) => {
|
|
|
13085
13085
|
evidence: null,
|
|
13086
13086
|
blocker: `RUN_${run.status}`
|
|
13087
13087
|
};
|
|
13088
|
+
const finiteRecipes = plan.recipes.filter((recipe) => recipe.kind !== "SERVE");
|
|
13088
13089
|
const orderedChecks = [...input.checks].sort((left, right) => left.ordinal - right.ordinal);
|
|
13089
|
-
if (!(orderedChecks.length ===
|
|
13090
|
-
const recipe =
|
|
13090
|
+
if (!(orderedChecks.length === finiteRecipes.length && orderedChecks.every((check, index) => {
|
|
13091
|
+
const recipe = finiteRecipes[index];
|
|
13091
13092
|
return recipe !== void 0 && check.projectId === input.projectId && check.workItemId === input.workItemId && check.runId === run.id && check.recipeId === recipe.id && check.required === recipe.required && check.ordinal === index + 1 && check.status !== "QUEUED" && check.status !== "RUNNING";
|
|
13092
13093
|
})) || orderedChecks.some((check) => check.required && check.status !== "PASSED")) return {
|
|
13093
13094
|
status: "BLOCKED",
|
|
@@ -37378,15 +37379,23 @@ var codexProviderDiagnostics = createCliProviderDiagnostics({
|
|
|
37378
37379
|
versionArguments: ["--version"],
|
|
37379
37380
|
authenticationArguments: ["login", "status"],
|
|
37380
37381
|
versionFromOutput: (output) => /^codex-cli ([^\s]+)$/.exec(output.trim())?.[1] ?? null,
|
|
37381
|
-
verifiedTargets: [
|
|
37382
|
-
|
|
37383
|
-
|
|
37384
|
-
|
|
37385
|
-
|
|
37386
|
-
|
|
37387
|
-
|
|
37388
|
-
|
|
37389
|
-
|
|
37382
|
+
verifiedTargets: [
|
|
37383
|
+
{
|
|
37384
|
+
version: "0.153.0-alpha.5",
|
|
37385
|
+
platform: "darwin",
|
|
37386
|
+
architecture: "arm64"
|
|
37387
|
+
},
|
|
37388
|
+
{
|
|
37389
|
+
version: "0.153.4",
|
|
37390
|
+
platform: "darwin",
|
|
37391
|
+
architecture: "arm64"
|
|
37392
|
+
},
|
|
37393
|
+
{
|
|
37394
|
+
version: "0.154.0-alpha.6.2",
|
|
37395
|
+
platform: "darwin",
|
|
37396
|
+
architecture: "arm64"
|
|
37397
|
+
}
|
|
37398
|
+
]
|
|
37390
37399
|
});
|
|
37391
37400
|
//#endregion
|
|
37392
37401
|
//#region ../../packages/provider-codex/dist/index.js
|
|
@@ -46967,7 +46976,7 @@ var formatGuidedLaunchReadiness = (report) => {
|
|
|
46967
46976
|
};
|
|
46968
46977
|
//#endregion
|
|
46969
46978
|
//#region src/version.ts
|
|
46970
|
-
var LOOMRAIL_VERSION = "0.1.
|
|
46979
|
+
var LOOMRAIL_VERSION = "0.1.1";
|
|
46971
46980
|
//#endregion
|
|
46972
46981
|
//#region src/index.ts
|
|
46973
46982
|
var writeLine = (message) => {
|