@agoric/swingset-xsnap-supervisor 0.10.3-u18.0 → 0.10.3-u18.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.
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
d8da59a32efb421023c36d483f76a20fcfec3d2cc0a9f8a8e36db497ee993764
|
|
@@ -100,11 +100,11 @@ const meterControl = makeMeterControl();
|
|
|
100
100
|
/**
|
|
101
101
|
* Wrap byte-level protocols with tagged array codec.
|
|
102
102
|
*
|
|
103
|
-
* @param {(cmd:
|
|
103
|
+
* @param {(cmd: ArrayBufferLike) => ArrayBuffer} issueCommand as from xsnap
|
|
104
104
|
* @typedef { [unknown, ...unknown[]] } Tagged tagged array
|
|
105
105
|
*/
|
|
106
106
|
function managerPort(issueCommand) {
|
|
107
|
-
/** @type { (item: Tagged) =>
|
|
107
|
+
/** @type { (item: Tagged) => ArrayBufferLike } */
|
|
108
108
|
const encode = item => {
|
|
109
109
|
let txt;
|
|
110
110
|
try {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/swingset-xsnap-supervisor",
|
|
3
|
-
"version": "0.10.3-u18.
|
|
3
|
+
"version": "0.10.3-u18.1",
|
|
4
4
|
"description": "Supervisor/Liveslots bundle for swingset xsnap workers",
|
|
5
5
|
"author": "Agoric",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -19,18 +19,18 @@
|
|
|
19
19
|
"lint:types": "tsc",
|
|
20
20
|
"lint-fix": "eslint --fix 'lib/**/*.js' 'src/**/*.js' 'scripts/**/*.js' 'test/**/*.js'",
|
|
21
21
|
"test": "ava",
|
|
22
|
-
"test:c8": "c8 $C8_OPTIONS ava
|
|
22
|
+
"test:c8": "c8 --all $C8_OPTIONS ava",
|
|
23
23
|
"test:xs": "exit 0"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@agoric/swingset-liveslots": "^0.10.3-u18.
|
|
27
|
-
"@endo/bundle-source": "^3.
|
|
28
|
-
"@endo/errors": "^1.2.
|
|
29
|
-
"@endo/import-bundle": "^1.3.
|
|
30
|
-
"@endo/init": "^1.1.
|
|
31
|
-
"@endo/marshal": "^1.6.
|
|
26
|
+
"@agoric/swingset-liveslots": "^0.10.3-u18.1",
|
|
27
|
+
"@endo/bundle-source": "^3.5.0",
|
|
28
|
+
"@endo/errors": "^1.2.8",
|
|
29
|
+
"@endo/import-bundle": "^1.3.2",
|
|
30
|
+
"@endo/init": "^1.1.7",
|
|
31
|
+
"@endo/marshal": "^1.6.2",
|
|
32
32
|
"ava": "^5.3.0",
|
|
33
|
-
"c8": "^
|
|
33
|
+
"c8": "^10.1.2"
|
|
34
34
|
},
|
|
35
35
|
"files": [
|
|
36
36
|
"LICENSE*",
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"typeCoverage": {
|
|
55
55
|
"atLeast": 83.68
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "f8c45b8a2e29a51522a81a6692af25b2d7f6b50f"
|
|
58
58
|
}
|