@elpapi42/pi-fleet 0.1.0-beta.14 → 0.1.0-beta.15
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/CHANGELOG.md +7 -0
- package/dist/cli-meta.json +4 -4
- package/dist/cli.mjs +2 -2
- package/dist/cli.mjs.map +1 -1
- package/dist/client-meta.json +4 -4
- package/dist/client.mjs +1 -1
- package/dist/client.mjs.map +1 -1
- package/dist/installer-meta.json +4 -4
- package/dist/installer.mjs +1 -1
- package/dist/installer.mjs.map +1 -1
- package/dist/runtime-manifest.json +22 -22
- package/dist/runtime-meta.json +6 -6
- package/dist/runtime.mjs +24 -15
- package/dist/runtime.mjs.map +2 -2
- package/package.json +1 -1
package/dist/client-meta.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"format": "esm"
|
|
7
7
|
},
|
|
8
8
|
"src/pi/external-installation.ts": {
|
|
9
|
-
"bytes":
|
|
9
|
+
"bytes": 9541,
|
|
10
10
|
"imports": [
|
|
11
11
|
{
|
|
12
12
|
"path": "node:child_process",
|
|
@@ -5197,7 +5197,7 @@
|
|
|
5197
5197
|
"imports": [],
|
|
5198
5198
|
"exports": [],
|
|
5199
5199
|
"inputs": {},
|
|
5200
|
-
"bytes":
|
|
5200
|
+
"bytes": 427346
|
|
5201
5201
|
},
|
|
5202
5202
|
"dist/client.mjs": {
|
|
5203
5203
|
"imports": [
|
|
@@ -5340,7 +5340,7 @@
|
|
|
5340
5340
|
"bytesInOutput": 1475
|
|
5341
5341
|
},
|
|
5342
5342
|
"src/pi/external-installation.ts": {
|
|
5343
|
-
"bytesInOutput":
|
|
5343
|
+
"bytesInOutput": 7804
|
|
5344
5344
|
},
|
|
5345
5345
|
"src/platform/client/start-runtime.ts": {
|
|
5346
5346
|
"bytesInOutput": 7296
|
|
@@ -5730,7 +5730,7 @@
|
|
|
5730
5730
|
"bytesInOutput": 65
|
|
5731
5731
|
}
|
|
5732
5732
|
},
|
|
5733
|
-
"bytes":
|
|
5733
|
+
"bytes": 180252
|
|
5734
5734
|
}
|
|
5735
5735
|
}
|
|
5736
5736
|
}
|
package/dist/client.mjs
CHANGED
|
@@ -142,7 +142,7 @@ import { constants } from "node:fs";
|
|
|
142
142
|
import { createReadStream } from "node:fs";
|
|
143
143
|
import { access, realpath, stat } from "node:fs/promises";
|
|
144
144
|
import { delimiter, dirname, isAbsolute, join } from "node:path";
|
|
145
|
-
var VERSION_TIMEOUT_MS =
|
|
145
|
+
var VERSION_TIMEOUT_MS = 15e3;
|
|
146
146
|
var MAX_VERSION_OUTPUT_BYTES = 4 * 1024;
|
|
147
147
|
var ExternalPiResolutionError = class extends Error {
|
|
148
148
|
constructor(code, message) {
|