@agoric/internal 0.3.3-dev-eb7e9eb.0 → 0.3.3-dev-3ce0599.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/internal",
3
- "version": "0.3.3-dev-eb7e9eb.0+eb7e9eb",
3
+ "version": "0.3.3-dev-3ce0599.0+3ce0599",
4
4
  "description": "Externally unsupported utilities internal to agoric-sdk",
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/assert": "0.6.1-dev-eb7e9eb.0+eb7e9eb",
24
- "@agoric/base-zone": "0.1.1-dev-eb7e9eb.0+eb7e9eb",
23
+ "@agoric/assert": "0.6.1-dev-3ce0599.0+3ce0599",
24
+ "@agoric/base-zone": "0.1.1-dev-3ce0599.0+3ce0599",
25
25
  "@endo/far": "^0.2.19",
26
26
  "@endo/init": "^0.5.57",
27
27
  "@endo/marshal": "^0.8.6",
@@ -36,6 +36,11 @@
36
36
  "ava": "^5.3.0",
37
37
  "tsd": "^0.28.1"
38
38
  },
39
+ "ava": {
40
+ "require": [
41
+ "@endo/init/debug.js"
42
+ ]
43
+ },
39
44
  "author": "Agoric",
40
45
  "license": "Apache-2.0",
41
46
  "files": [
@@ -44,5 +49,5 @@
44
49
  "publishConfig": {
45
50
  "access": "public"
46
51
  },
47
- "gitHead": "eb7e9ebe52e78052e5ded601b6658896d257cab4"
52
+ "gitHead": "3ce0599d5173b802598b5bedf57d3c30f016f789"
48
53
  }
@@ -1,2 +1,2 @@
1
- export * from "@endo/init/debug.js";
1
+ export {};
2
2
  //# sourceMappingURL=install-ses-debug.d.ts.map
@@ -3,4 +3,4 @@
3
3
  // The setting below are *unsafe* and should not be used in contact with
4
4
  // genuinely malicious code.
5
5
 
6
- export * from '@endo/init/debug.js';
6
+ import '@endo/init/debug.js';
package/src/queue.js CHANGED
@@ -17,7 +17,7 @@ export const makeWithQueue = () => {
17
17
  }
18
18
  const [thunk, resolve, reject] = queue[0];
19
19
  // Run the thunk in a new turn.
20
- Promise.resolve()
20
+ void Promise.resolve()
21
21
  .then(thunk)
22
22
  // Resolve or reject our caller with the thunk's value.
23
23
  .then(resolve, reject)