@agoric/async-flow 0.1.1-dev-437c03b.0 → 0.1.1-dev-5b3e4d0.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/async-flow",
3
- "version": "0.1.1-dev-437c03b.0+437c03b",
3
+ "version": "0.1.1-dev-5b3e4d0.0+5b3e4d0",
4
4
  "description": "Upgrade async functions at await points by replay",
5
5
  "type": "module",
6
6
  "repository": "https://github.com/Agoric/agoric-sdk",
@@ -24,10 +24,10 @@
24
24
  "author": "Agoric",
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
- "@agoric/base-zone": "0.1.1-dev-437c03b.0+437c03b",
28
- "@agoric/internal": "0.3.3-dev-437c03b.0+437c03b",
29
- "@agoric/store": "0.9.3-dev-437c03b.0+437c03b",
30
- "@agoric/vow": "0.1.1-dev-437c03b.0+437c03b",
27
+ "@agoric/base-zone": "0.1.1-dev-5b3e4d0.0+5b3e4d0",
28
+ "@agoric/internal": "0.3.3-dev-5b3e4d0.0+5b3e4d0",
29
+ "@agoric/store": "0.9.3-dev-5b3e4d0.0+5b3e4d0",
30
+ "@agoric/vow": "0.1.1-dev-5b3e4d0.0+5b3e4d0",
31
31
  "@endo/common": "^1.2.5",
32
32
  "@endo/errors": "^1.2.5",
33
33
  "@endo/eventual-send": "^1.2.5",
@@ -37,8 +37,8 @@
37
37
  "@endo/promise-kit": "^1.1.5"
38
38
  },
39
39
  "devDependencies": {
40
- "@agoric/swingset-vat": "0.32.3-dev-437c03b.0+437c03b",
41
- "@agoric/zone": "0.2.3-dev-437c03b.0+437c03b",
40
+ "@agoric/swingset-vat": "0.32.3-dev-5b3e4d0.0+5b3e4d0",
41
+ "@agoric/zone": "0.2.3-dev-5b3e4d0.0+5b3e4d0",
42
42
  "@endo/env-options": "^1.1.6",
43
43
  "ava": "^5.3.0",
44
44
  "tsd": "^0.31.1"
@@ -62,5 +62,5 @@
62
62
  "typeCoverage": {
63
63
  "atLeast": 76.93
64
64
  },
65
- "gitHead": "437c03bd4d4dcfe78808365166406b1eb161f64e"
65
+ "gitHead": "5b3e4d0df9aec79285ce863de5ff59e7ed4afb2c"
66
66
  }
@@ -0,0 +1,8 @@
1
+ /* eslint-disable import/no-extraneous-dependencies -- requiring the package itself to check exports map */
2
+ import test from 'ava';
3
+
4
+ import * as index from '@agoric/async-flow';
5
+
6
+ test('index', t => {
7
+ t.snapshot(Object.keys(index).sort());
8
+ });
@@ -0,0 +1,14 @@
1
+ # Snapshot report for `test/exports.test.js`
2
+
3
+ The actual snapshot is saved in `exports.test.js.snap`.
4
+
5
+ Generated by [AVA](https://avajs.dev).
6
+
7
+ ## index
8
+
9
+ > Snapshot 1
10
+
11
+ [
12
+ 'empty',
13
+ 'prepareAsyncFlowTools',
14
+ ]