mirror of https://github.com/waku-org/js-waku.git
Merge pull request #948 from waku-org/no-util-polyfill
fix: util polyfill not needed
This commit is contained in:
commit
b8640e89bd
|
@ -13,6 +13,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- API Docs moved to https://js.waku.org/
|
- API Docs moved to https://js.waku.org/
|
||||||
- test: fix typing for nwaku JSON RPC responses.
|
- test: fix typing for nwaku JSON RPC responses.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Specify that `util` polyfill is not needed so that bundlers can automatically discard it.
|
||||||
|
|
||||||
## [0.26.0] - 2022-09-08
|
## [0.26.0] - 2022-09-08
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -83,7 +83,8 @@
|
||||||
"reset-hard": "git clean -dfx -e .idea && git reset --hard && npm i && npm run build"
|
"reset-hard": "git clean -dfx -e .idea && git reset --hard && npm i && npm run build"
|
||||||
},
|
},
|
||||||
"browser": {
|
"browser": {
|
||||||
"crypto": false
|
"crypto": false,
|
||||||
|
"util": false
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16"
|
"node": ">=16"
|
||||||
|
|
Loading…
Reference in New Issue