@agoric/vow 0.1.1-dev-c27a7e6.0 → 0.1.1-dev-80f5cb1.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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/src/vow.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/vow",
3
- "version": "0.1.1-dev-c27a7e6.0+c27a7e6",
3
+ "version": "0.1.1-dev-80f5cb1.0+80f5cb1",
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-c27a7e6.0+c27a7e6",
24
- "@agoric/internal": "0.3.3-dev-c27a7e6.0+c27a7e6",
23
+ "@agoric/base-zone": "0.1.1-dev-80f5cb1.0+80f5cb1",
24
+ "@agoric/internal": "0.3.3-dev-80f5cb1.0+80f5cb1",
25
25
  "@endo/env-options": "^1.1.6",
26
26
  "@endo/errors": "^1.2.5",
27
27
  "@endo/eventual-send": "^1.2.5",
@@ -56,5 +56,5 @@
56
56
  "typeCoverage": {
57
57
  "atLeast": 89.93
58
58
  },
59
- "gitHead": "c27a7e6b55064e7e86613ae5a923cc6511d15c1e"
59
+ "gitHead": "80f5cb1cef1f2043c592adc4055802a27c40cc7b"
60
60
  }
package/src/vow.js CHANGED
@@ -120,7 +120,7 @@ export const prepareVowKit = zone => {
120
120
  case 'pending':
121
121
  return provideCurrentKit(this.facets.resolver).promise;
122
122
  default:
123
- throw new TypeError(`unexpected stepStatus ${stepStatus}`);
123
+ throw TypeError(`unexpected stepStatus ${stepStatus}`);
124
124
  }
125
125
  },
126
126
  },