@skilder-ai/runtime 0.8.2 → 0.8.4
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/index.js +88 -18
- package/dist/index.js.map +2 -2
- package/dist/script-sdk-bundle.cjs +3 -1
- package/package.json +2 -2
|
@@ -81,7 +81,9 @@ rl.on("line", (line) => {
|
|
|
81
81
|
}
|
|
82
82
|
});
|
|
83
83
|
rl.on("close", () => {
|
|
84
|
-
const err = new Error(
|
|
84
|
+
const err = new Error(
|
|
85
|
+
"Tool/delegate call interrupted: IPC pipe to runtime closed before a response was received. Likely causes: (1) script returned or process.exit() ran while a callTool/delegate/execute promise was still pending \u2014 make sure top-level awaits resolve before exit; (2) script timeout exceeded; (3) runtime crashed."
|
|
86
|
+
);
|
|
85
87
|
for (const [id, handler] of pending.entries()) {
|
|
86
88
|
handler.reject(err);
|
|
87
89
|
pending.delete(id);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skilder-ai/runtime",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.4",
|
|
4
4
|
"description": "Skilder Runtime - NodeJS processes for edge execution connected to backend orchestrator via NATS",
|
|
5
5
|
"author": "Skilder AI",
|
|
6
6
|
"license": "See license in LICENSE",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"esbuild-plugin-tsc": "^0.5.0",
|
|
62
62
|
"inversify": "^7.0.0-alpha.5",
|
|
63
63
|
"reflect-metadata": "^0.2.2",
|
|
64
|
-
"@skilder-ai/common": "0.8.
|
|
64
|
+
"@skilder-ai/common": "0.8.4"
|
|
65
65
|
},
|
|
66
66
|
"scripts": {
|
|
67
67
|
"build": "tsx tooling/esbuild.build.ts",
|