@runa-ai/runa-cli 0.5.47 → 0.5.48
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.
|
@@ -240,7 +240,7 @@ export declare const ciMachine: import("xstate").StateMachine<CiContext, CiEvent
|
|
|
240
240
|
summaryPath?: string | undefined;
|
|
241
241
|
error?: string | undefined;
|
|
242
242
|
}, import("xstate").EventObject, import("xstate").MetaObject, {
|
|
243
|
-
id: "
|
|
243
|
+
id: "ci";
|
|
244
244
|
states: {
|
|
245
245
|
readonly idle: {};
|
|
246
246
|
readonly setup: {
|
package/dist/index.js
CHANGED
|
@@ -929,7 +929,7 @@ var CLI_VERSION, HAS_ADMIN_COMMAND;
|
|
|
929
929
|
var init_version = __esm({
|
|
930
930
|
"src/version.ts"() {
|
|
931
931
|
init_esm_shims();
|
|
932
|
-
CLI_VERSION = "0.5.
|
|
932
|
+
CLI_VERSION = "0.5.48";
|
|
933
933
|
HAS_ADMIN_COMMAND = false;
|
|
934
934
|
}
|
|
935
935
|
});
|
|
@@ -14936,7 +14936,7 @@ var ciMachine = setup({
|
|
|
14936
14936
|
allTestsPassed: ({ context }) => allTestsPassed(context)
|
|
14937
14937
|
}
|
|
14938
14938
|
}).createMachine({
|
|
14939
|
-
id: "
|
|
14939
|
+
id: "ci",
|
|
14940
14940
|
initial: "idle",
|
|
14941
14941
|
context: ({ input: input3 }) => createInitialContext(input3),
|
|
14942
14942
|
states: {
|
|
@@ -15000,7 +15000,7 @@ var ciMachine = setup({
|
|
|
15000
15000
|
})
|
|
15001
15001
|
},
|
|
15002
15002
|
onError: {
|
|
15003
|
-
target: "#
|
|
15003
|
+
target: "#ci.failed",
|
|
15004
15004
|
actions: assign({
|
|
15005
15005
|
error: ({ event }) => extractErrorMessage2(event, "Local setup failed")
|
|
15006
15006
|
})
|
|
@@ -15044,7 +15044,7 @@ var ciMachine = setup({
|
|
|
15044
15044
|
})
|
|
15045
15045
|
},
|
|
15046
15046
|
onError: {
|
|
15047
|
-
target: "#
|
|
15047
|
+
target: "#ci.failed",
|
|
15048
15048
|
actions: assign({
|
|
15049
15049
|
error: ({ event }) => extractErrorMessage2(event, "PR local setup failed")
|
|
15050
15050
|
})
|