@dxos/hypercore 0.3.11-main.ff3a851 → 0.3.11-next.e28df4f

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": "@dxos/hypercore",
3
- "version": "0.3.11-main.ff3a851",
3
+ "version": "0.3.11-next.e28df4f",
4
4
  "description": "Hypercore wrapper and utils.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -20,16 +20,16 @@
20
20
  "sodium-native": "^3.2.0",
21
21
  "sodium-universal": "^3.0.2",
22
22
  "streamx": "^2.12.5",
23
- "@dxos/crypto": "0.3.11-main.ff3a851",
24
- "@dxos/codec-protobuf": "0.3.11-main.ff3a851",
25
- "@dxos/async": "0.3.11-main.ff3a851",
26
- "@dxos/keys": "0.3.11-main.ff3a851",
27
- "@dxos/debug": "0.3.11-main.ff3a851",
28
- "@dxos/random-access-storage": "0.3.11-main.ff3a851",
29
- "@dxos/invariant": "0.3.11-main.ff3a851",
30
- "@dxos/node-std": "0.3.11-main.ff3a851",
31
- "@dxos/typings": "0.3.11-main.ff3a851",
32
- "@dxos/util": "0.3.11-main.ff3a851"
23
+ "@dxos/async": "0.3.11-next.e28df4f",
24
+ "@dxos/codec-protobuf": "0.3.11-next.e28df4f",
25
+ "@dxos/debug": "0.3.11-next.e28df4f",
26
+ "@dxos/crypto": "0.3.11-next.e28df4f",
27
+ "@dxos/invariant": "0.3.11-next.e28df4f",
28
+ "@dxos/keys": "0.3.11-next.e28df4f",
29
+ "@dxos/node-std": "0.3.11-next.e28df4f",
30
+ "@dxos/random-access-storage": "0.3.11-next.e28df4f",
31
+ "@dxos/util": "0.3.11-next.e28df4f",
32
+ "@dxos/typings": "0.3.11-next.e28df4f"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@faker-js/faker": "^8.3.1",
@@ -39,9 +39,9 @@
39
39
  "hypercore-protocol": "^8.0.7",
40
40
  "noise-protocol": "3.0.1",
41
41
  "random-access-memory": "^4.1.0",
42
- "@dxos/tracing": "0.3.11-main.ff3a851",
43
- "@dxos/util": "0.3.11-main.ff3a851",
44
- "@dxos/log": "0.3.11-main.ff3a851"
42
+ "@dxos/log": "0.3.11-next.e28df4f",
43
+ "@dxos/util": "0.3.11-next.e28df4f",
44
+ "@dxos/tracing": "0.3.11-next.e28df4f"
45
45
  },
46
46
  "publishConfig": {
47
47
  "access": "public"
@@ -176,12 +176,9 @@ describe('Replication', () => {
176
176
  }
177
177
 
178
178
  // Random delay.
179
- setTimeout(
180
- () => {
181
- next(size);
182
- },
183
- faker.number.int({ min: 0, max: 100 }),
184
- );
179
+ setTimeout(() => {
180
+ next(size);
181
+ }, faker.number.int({ min: 0, max: 100 }));
185
182
  }, numBlocks);
186
183
 
187
184
  // Done.