@libp2p/interface-compliance-tests 3.0.3 → 3.0.4

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
@@ -11,6 +11,7 @@
11
11
 
12
12
  - [Install](#install)
13
13
  - [Usage](#usage)
14
+ - [API Docs](#api-docs)
14
15
  - [License](#license)
15
16
  - [Contribute](#contribute)
16
17
 
@@ -24,6 +25,10 @@ $ npm i @libp2p/interface-compliance-tests
24
25
 
25
26
  Each [interface](https://npmjs.org/packages/@libp2p/interfaces) has its documentation on how to use the compliance tests and should be used as the source of truth.
26
27
 
28
+ ## API Docs
29
+
30
+ - <https://libp2p.github.io/js-libp2p-interfaces>
31
+
27
32
  ## License
28
33
 
29
34
  Licensed under either of
@@ -0,0 +1,3 @@
1
+ (function (root, factory) {(typeof module === 'object' && module.exports) ? module.exports = factory() : root.Libp2PInterfaceComplianceTests = factory()}(typeof self !== 'undefined' ? self : this, function () {
2
+ "use strict";var Libp2PInterfaceComplianceTests=(()=>{var t=Object.defineProperty;var a=Object.getOwnPropertyDescriptor;var b=Object.getOwnPropertyNames;var c=Object.prototype.hasOwnProperty;var d=(o,e,x,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let p of b(e))!c.call(o,p)&&p!==x&&t(o,p,{get:()=>e[p],enumerable:!(r=a(e,p))||r.enumerable});return o};var f=o=>d(t({},"__esModule",{value:!0}),o);var g={};return f(g);})();
3
+ return Libp2PInterfaceComplianceTests}));
@@ -0,0 +1,3 @@
1
+ {
2
+ "TestSetup": "https://libp2p.github.io/js-libp2p-interfaces/interfaces/_libp2p_interface_compliance_tests.TestSetup.html"
3
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@libp2p/interface-compliance-tests",
3
- "version": "3.0.3",
3
+ "version": "3.0.4",
4
4
  "description": "Compliance tests for JS libp2p interfaces",
5
5
  "license": "Apache-2.0 OR MIT",
6
6
  "homepage": "https://github.com/libp2p/js-libp2p-interfaces/tree/master/packages/interface-compliance-tests#readme",
@@ -39,7 +39,7 @@
39
39
  },
40
40
  "files": [
41
41
  "src",
42
- "dist/src",
42
+ "dist",
43
43
  "!dist/test",
44
44
  "!**/*.tsbuildinfo"
45
45
  ],
@@ -156,6 +156,9 @@
156
156
  "release": "aegir release"
157
157
  },
158
158
  "dependencies": {
159
- "aegir": "^37.4.0"
159
+ "aegir": "^37.7.3"
160
+ },
161
+ "typedoc": {
162
+ "entryPoint": "./src/index.ts"
160
163
  }
161
164
  }