Skip to content

Commit 40ef8b4

Browse files
committed
chore: update config
1 parent 63e1124 commit 40ef8b4

File tree

4 files changed

+43
-5
lines changed

4 files changed

+43
-5
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ updates:
55
schedule:
66
interval: daily
77
time: "10:00"
8-
open-pull-requests-limit: 10
8+
open-pull-requests-limit: 20
99
commit-message:
1010
prefix: "deps"
1111
prefix-development: "deps(dev)"

README.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# @multiformats/multiaddr-matcher
2+
13
[![multiformats.io](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](http://multiformats.io)
24
[![codecov](https://img.shields.io/codecov/c/github/multiformats/js-multiaddr-matcher.svg?style=flat-square)](https://codecov.io/gh/multiformats/js-multiaddr-matcher)
35
[![CI](https://img.shields.io/github/actions/workflow/status/multiformats/js-multiaddr-matcher/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/multiformats/js-multiaddr-matcher/actions/workflows/js-test-and-release.yml?query=branch%3Amain)
@@ -6,6 +8,21 @@
68
79
# About
810

11+
<!--
12+
13+
!IMPORTANT!
14+
15+
Everything in this README between "# About" and "# Install" is automatically
16+
generated and will be overwritten the next time the doc generator is run.
17+
18+
To make changes to this section, please update the @packageDocumentation section
19+
of src/index.js or src/index.ts
20+
21+
To experiment with formatting, please run "npm run docs" from the root of this
22+
repo and examine the changes made.
23+
24+
-->
25+
926
This module exports various matchers that can be used to infer the type of a
1027
passed multiaddr.
1128

@@ -44,7 +61,7 @@ $ npm i @multiformats/multiaddr-matcher
4461

4562
## Browser `<script>` tag
4663

47-
Loading this module through a script tag will make it's exports available as `MultiformatsMultiaddrMatcher` in the global namespace.
64+
Loading this module through a script tag will make its exports available as `MultiformatsMultiaddrMatcher` in the global namespace.
4865

4966
```html
5067
<script src="https://unpkg.com/@multiformats/multiaddr-matcher/dist/index.min.js"></script>
@@ -58,8 +75,8 @@ Loading this module through a script tag will make it's exports available as `Mu
5875

5976
Licensed under either of
6077

61-
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
62-
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
78+
- Apache 2.0, ([LICENSE-APACHE](https://github.com/multiformats/js-multiaddr-matcher/LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
79+
- MIT ([LICENSE-MIT](https://github.com/multiformats/js-multiaddr-matcher/LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
6380

6481
# Contribution
6582

package.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,31 @@
1111
"bugs": {
1212
"url": "https://github.com/multiformats/js-multiaddr-matcher/issues"
1313
},
14+
"publishConfig": {
15+
"access": "public",
16+
"provenance": true
17+
},
1418
"keywords": [
1519
"multiaddr"
1620
],
1721
"type": "module",
1822
"types": "./dist/src/index.d.ts",
23+
"typesVersions": {
24+
"*": {
25+
"*": [
26+
"*",
27+
"dist/*",
28+
"dist/src/*",
29+
"dist/src/*/index"
30+
],
31+
"src/*": [
32+
"*",
33+
"dist/*",
34+
"dist/src/*",
35+
"dist/src/*/index"
36+
]
37+
}
38+
},
1939
"files": [
2040
"src",
2141
"dist",

typedoc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"entryPoints": [
3-
"./src/index.ts"
3+
"./src/index.ts",
4+
"./src/utils.ts"
45
]
56
}

0 commit comments

Comments
 (0)