@agoric/vow 0.1.1-dev-cb5ca69.0 → 0.1.1-dev-c730d2b.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/package.json +6 -6
- package/src/E.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/vow",
|
|
3
|
-
"version": "0.1.1-dev-
|
|
3
|
+
"version": "0.1.1-dev-c730d2b.0+c730d2b",
|
|
4
4
|
"description": "Remote (shortening and disconnection-tolerant) Promise-likes",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"lint:types": "tsc"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@agoric/base-zone": "0.1.1-dev-
|
|
24
|
-
"@agoric/internal": "0.3.3-dev-
|
|
23
|
+
"@agoric/base-zone": "0.1.1-dev-c730d2b.0+c730d2b",
|
|
24
|
+
"@agoric/internal": "0.3.3-dev-c730d2b.0+c730d2b",
|
|
25
25
|
"@endo/env-options": "^1.1.8",
|
|
26
26
|
"@endo/errors": "^1.2.9",
|
|
27
27
|
"@endo/eventual-send": "^1.3.0",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@agoric/internal": "^0.3.2",
|
|
34
|
-
"@agoric/swingset-vat": "0.32.3-dev-
|
|
35
|
-
"@agoric/zone": "0.2.3-dev-
|
|
34
|
+
"@agoric/swingset-vat": "0.32.3-dev-c730d2b.0+c730d2b",
|
|
35
|
+
"@agoric/zone": "0.2.3-dev-c730d2b.0+c730d2b",
|
|
36
36
|
"@endo/far": "^1.1.10",
|
|
37
37
|
"@endo/init": "^1.1.8",
|
|
38
38
|
"ava": "^5.3.0",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"typeCoverage": {
|
|
59
59
|
"atLeast": 91.75
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "c730d2b9f4d955accaae4ad85bfece56989afd67"
|
|
62
62
|
}
|
package/src/E.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @ts-check
|
|
2
2
|
/**
|
|
3
3
|
* @file provides a `makeE` that can be parameterized with an `unwrap` function
|
|
4
|
-
* and corresponding `import('./types').EUnwrap<T>`. These will be used to
|
|
4
|
+
* and corresponding `import('./types.js').EUnwrap<T>`. These will be used to
|
|
5
5
|
* extract the final settlement from a chain of PromiseLikes and PromiseSteps or
|
|
6
6
|
* similar non-thenable pseudo-promises.
|
|
7
7
|
*
|