@agoric/xsnap 0.14.3-dev-da3b8a8.0 → 0.14.3-dev-7710838.0
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/README.md +3 -3
- package/package.json +8 -5
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@ Some time later, possibly on a different computer…
|
|
|
22
22
|
|
|
23
23
|
```js
|
|
24
24
|
const decoder = new TextDecoder();
|
|
25
|
-
const worker = await xsnap({
|
|
25
|
+
const worker = await xsnap({
|
|
26
26
|
snapshotStream: fs.createFileStream('bootstrap.xss'),
|
|
27
27
|
});
|
|
28
28
|
const response = await worker.issueCommand('1');
|
|
@@ -57,7 +57,7 @@ The REPL supports special commands `load` and `save` for snapshots, and `quit`
|
|
|
57
57
|
to quit.
|
|
58
58
|
Load and save don't take arguments; just type the file name on the next prompt.
|
|
59
59
|
|
|
60
|
-
```
|
|
60
|
+
```console
|
|
61
61
|
$ xsrepl
|
|
62
62
|
xs> globalThis.x = 42;
|
|
63
63
|
xs> x
|
|
@@ -67,7 +67,7 @@ file> temp.xss
|
|
|
67
67
|
xs> quit
|
|
68
68
|
```
|
|
69
69
|
|
|
70
|
-
```
|
|
70
|
+
```console
|
|
71
71
|
$ xsrepl
|
|
72
72
|
xs> load
|
|
73
73
|
file> temp.xss
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/xsnap",
|
|
3
|
-
"version": "0.14.3-dev-
|
|
3
|
+
"version": "0.14.3-dev-7710838.0+7710838",
|
|
4
4
|
"description": "Description forthcoming.",
|
|
5
5
|
"author": "Agoric",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
"test:xs": "exit 0"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@agoric/assert": "0.6.1-dev-
|
|
31
|
-
"@agoric/internal": "0.3.3-dev-
|
|
32
|
-
"@agoric/xsnap-lockdown": "0.14.1-dev-
|
|
30
|
+
"@agoric/assert": "0.6.1-dev-7710838.0+7710838",
|
|
31
|
+
"@agoric/internal": "0.3.3-dev-7710838.0+7710838",
|
|
32
|
+
"@agoric/xsnap-lockdown": "0.14.1-dev-7710838.0+7710838",
|
|
33
33
|
"@endo/bundle-source": "^2.7.0",
|
|
34
34
|
"@endo/eventual-send": "^0.17.5",
|
|
35
35
|
"@endo/init": "^0.5.59",
|
|
@@ -65,5 +65,8 @@
|
|
|
65
65
|
"timeout": "2m",
|
|
66
66
|
"workerThreads": false
|
|
67
67
|
},
|
|
68
|
-
"
|
|
68
|
+
"typeCoverage": {
|
|
69
|
+
"atLeast": 94.43
|
|
70
|
+
},
|
|
71
|
+
"gitHead": "7710838df55e651ca2c8777950df5b3a3bba9059"
|
|
69
72
|
}
|