@agoric/internal 0.3.3-dev-fd12d05.0 → 0.3.3-dev-c0c733c.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-fd12d05.0+fd12d05",
3
+ "version": "0.3.3-dev-c0c733c.0+c0c733c",
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-fd12d05.0+fd12d05",
23
+ "@agoric/base-zone": "0.1.1-dev-c0c733c.0+c0c733c",
24
24
  "@endo/common": "^1.2.5",
25
25
  "@endo/errors": "^1.2.5",
26
26
  "@endo/far": "^1.1.5",
@@ -59,5 +59,5 @@
59
59
  "typeCoverage": {
60
60
  "atLeast": 93.42
61
61
  },
62
- "gitHead": "fd12d05b0f2242236e8526c4a4f4c3496b9c2e06"
62
+ "gitHead": "c0c733ca12c32b2a7ad1b5ba0765b4317d44d9b2"
63
63
  }
@@ -1,4 +1,4 @@
1
- /* global Buffer */
1
+ /* eslint-env node */
2
2
  import { Transform } from 'stream';
3
3
 
4
4
  // Transform objects which convert from hardened Arrays of JSON-serializable
package/src/netstring.js CHANGED
@@ -1,4 +1,4 @@
1
- /* global Buffer */
1
+ /* eslint-env node */
2
2
  import { Fail } from '@endo/errors';
3
3
 
4
4
  // adapted from 'netstring-stream', https://github.com/tlivings/netstring-stream/
@@ -1,4 +1,4 @@
1
- /* global Buffer */
1
+ /* eslint-env node */
2
2
  /* eslint-disable no-underscore-dangle */
3
3
 
4
4
  import { Transform } from 'node:stream';
@@ -1,4 +1,4 @@
1
- /* global process */
1
+ /* eslint-env node */
2
2
  // Use modules not prefixed with `node:` since some deploy scripts may
3
3
  // still be running in esm emulation
4
4
  import path from 'path';