@libp2p/mplex 10.0.15-e1c01370b → 10.0.15-f0d2b52d0

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/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ # @libp2p/mplex
2
+
1
3
  [![libp2p.io](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/)
2
4
  [![Discuss](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg?style=flat-square)](https://discuss.libp2p.io)
3
5
  [![codecov](https://img.shields.io/codecov/c/github/libp2p/js-libp2p.svg?style=flat-square)](https://codecov.io/gh/libp2p/js-libp2p)
@@ -7,7 +7,7 @@
7
7
  *
8
8
  * @example
9
9
  *
10
- * ```js
10
+ * ```TypeScript
11
11
  * import { mplex } from '@libp2p/mplex'
12
12
  * import { pipe } from 'it-pipe'
13
13
  *
package/dist/src/index.js CHANGED
@@ -7,7 +7,7 @@
7
7
  *
8
8
  * @example
9
9
  *
10
- * ```js
10
+ * ```TypeScript
11
11
  * import { mplex } from '@libp2p/mplex'
12
12
  * import { pipe } from 'it-pipe'
13
13
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@libp2p/mplex",
3
- "version": "10.0.15-e1c01370b",
3
+ "version": "10.0.15-f0d2b52d0",
4
4
  "description": "JavaScript implementation of https://github.com/libp2p/mplex",
5
5
  "license": "Apache-2.0 OR MIT",
6
6
  "homepage": "https://github.com/libp2p/js-libp2p/tree/main/packages/stream-multiplexer-mplex#readme",
@@ -50,6 +50,7 @@
50
50
  "clean": "aegir clean",
51
51
  "lint": "aegir lint",
52
52
  "dep-check": "aegir dep-check",
53
+ "doc-check": "aegir doc-check",
53
54
  "build": "aegir build",
54
55
  "benchmark": "node ./node_modules/.bin/benchmark benchmark/send-and-receive.js",
55
56
  "test": "aegir test",
@@ -61,21 +62,21 @@
61
62
  "test:electron-main": "aegir test -t electron-main"
62
63
  },
63
64
  "dependencies": {
64
- "@libp2p/interface": "1.1.3-e1c01370b",
65
- "@libp2p/utils": "5.2.5-e1c01370b",
65
+ "@libp2p/interface": "1.1.3-f0d2b52d0",
66
+ "@libp2p/utils": "5.2.5-f0d2b52d0",
66
67
  "it-pipe": "^3.0.1",
67
68
  "it-pushable": "^3.2.3",
68
69
  "it-stream-types": "^2.0.1",
69
70
  "uint8-varint": "^2.0.4",
70
71
  "uint8arraylist": "^2.4.8",
71
- "uint8arrays": "^5.0.1"
72
+ "uint8arrays": "^5.0.2"
72
73
  },
73
74
  "devDependencies": {
74
- "@libp2p/interface-compliance-tests": "5.3.1-e1c01370b",
75
- "@libp2p/logger": "4.0.6-e1c01370b",
76
- "aegir": "^42.2.3",
75
+ "@libp2p/interface-compliance-tests": "5.3.1-f0d2b52d0",
76
+ "@libp2p/logger": "4.0.6-f0d2b52d0",
77
+ "aegir": "^42.2.4",
77
78
  "benchmark": "^2.1.4",
78
- "cborg": "^4.0.8",
79
+ "cborg": "^4.0.9",
79
80
  "delay": "^6.0.0",
80
81
  "iso-random-stream": "^2.0.2",
81
82
  "it-all": "^3.0.4",
package/src/index.ts CHANGED
@@ -7,7 +7,7 @@
7
7
  *
8
8
  * @example
9
9
  *
10
- * ```js
10
+ * ```TypeScript
11
11
  * import { mplex } from '@libp2p/mplex'
12
12
  * import { pipe } from 'it-pipe'
13
13
  *