Merge pull request #1029 from waku-org/feat/multiaddr-optional-dep

This commit is contained in:
fryorcraken.eth 2022-11-21 11:14:02 +11:00 committed by GitHub
commit a85db50abd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 20 additions and 0 deletions

8
package-lock.json generated
View File

@ -21913,6 +21913,14 @@
},
"engines": {
"node": ">=16"
},
"peerDependencies": {
"@multiformats/multiaddr": "^11.0.6"
},
"peerDependenciesMeta": {
"@multiformats/multiaddr": {
"optional": true
}
}
},
"packages/core/node_modules/uuid": {

View File

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Added
- Add `@multiformats/multiaddr` as peer dependency.
## @waku/core [0.0.6](https://github.com/waku-org/js-waku/compare/@waku/core@0.0.5...@waku/core@0.0.6) (2022-11-18)
### Added

View File

@ -153,6 +153,14 @@
"ts-node": "^10.9.1",
"typescript": "^4.6.3"
},
"peerDependencies": {
"@multiformats/multiaddr": "^11.0.6"
},
"peerDependenciesMeta": {
"@multiformats/multiaddr": {
"optional": true
}
},
"typedoc": {
"entryPoint": "./src/index.ts"
},