@agoric/internal 0.3.3-dev-3ba7ca7.0 → 0.3.3-dev-72248e9.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-3ba7ca7.0+3ba7ca7",
3
+ "version": "0.3.3-dev-72248e9.0+72248e9",
4
4
  "description": "Externally unsupported utilities internal to agoric-sdk",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -20,7 +20,7 @@
20
20
  "lint:types": "tsc"
21
21
  },
22
22
  "dependencies": {
23
- "@agoric/base-zone": "0.1.1-dev-3ba7ca7.0+3ba7ca7",
23
+ "@agoric/base-zone": "0.1.1-dev-72248e9.0+72248e9",
24
24
  "@endo/common": "^1.2.8",
25
25
  "@endo/errors": "^1.2.8",
26
26
  "@endo/far": "^1.1.9",
@@ -34,7 +34,7 @@
34
34
  "jessie.js": "^0.3.4"
35
35
  },
36
36
  "devDependencies": {
37
- "@agoric/cosmic-proto": "0.4.1-dev-3ba7ca7.0+3ba7ca7",
37
+ "@agoric/cosmic-proto": "0.4.1-dev-72248e9.0+72248e9",
38
38
  "@endo/exo": "^1.5.7",
39
39
  "@endo/init": "^1.1.7",
40
40
  "ava": "^5.3.0",
@@ -60,5 +60,5 @@
60
60
  "typeCoverage": {
61
61
  "atLeast": 93.14
62
62
  },
63
- "gitHead": "3ba7ca79fab3d11187ab59eba43f59b3f112b2c0"
63
+ "gitHead": "72248e9222801b3bea9c5c4d16966ccc1d861df6"
64
64
  }
@@ -21,13 +21,13 @@ export const fsStreamReady = stream =>
21
21
  }
22
22
 
23
23
  const onReady = () => {
24
- cleanup(); // eslint-disable-line no-use-before-define
24
+ cleanup();
25
25
  resolve();
26
26
  };
27
27
 
28
28
  /** @param {Error} err */
29
29
  const onError = err => {
30
- cleanup(); // eslint-disable-line no-use-before-define
30
+ cleanup();
31
31
  reject(err);
32
32
  };
33
33
 
@@ -1 +1 @@
1
- {"version":3,"file":"shutdown.d.ts","sourceRoot":"","sources":["shutdown.js"],"names":[],"mappings":"AAKO;;EA+DN;AAGM,wDAON"}
1
+ {"version":3,"file":"shutdown.d.ts","sourceRoot":"","sources":["shutdown.js"],"names":[],"mappings":"AAKO;;EA8DN;AAGM,wDAON"}
@@ -22,7 +22,6 @@ export const makeFreshShutdown = (verbose = true) => {
22
22
  process.off('SIGINT', shutdown);
23
23
  process.off('SIGTERM', shutdown);
24
24
  process.off('beforeExit', shutdown);
25
- // eslint-disable-next-line no-use-before-define
26
25
  process.off('uncaughtException', uncaughtShutdown);
27
26
  verbose && console.error(`Shutting down cleanly...`);
28
27
  const shutdowners = [...shutdownThunks.keys()];