From d1187e3f9180bd8caeb15fac748daf5ab988788d Mon Sep 17 00:00:00 2001 From: George Kudrayvtsev Date: Tue, 16 May 2023 12:51:04 -0700 Subject: [PATCH] fmt, fixup changelog --- CHANGELOG.md | 2 +- config/webpack.config.browser.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c50f83031..774812502 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ A breaking change will get clearly marked in this log. ### Update -- Bundle size has decreased by dropping unnecessary dependencies (`lodash`: [#822](https://github.com/stellar/js-stellar-sdk/pull/822), `es6-promise`: [#823](https://github.com/stellar/js-stellar-sdk/pull/823), polyfills: [#825](https://github.com/stellar/js-stellar-sdk/pull/825), `uri.js`: [TODO]()). +- Bundle size has decreased by dropping unnecessary dependencies (`lodash`: [#822](https://github.com/stellar/js-stellar-sdk/pull/822), `es6-promise`: [#823](https://github.com/stellar/js-stellar-sdk/pull/823), polyfills: [#825](https://github.com/stellar/js-stellar-sdk/pull/825), `urijs`: [TODO](https://github.com/stellar/js-stellar-sdk/issues/827)). - Dependencies (including `stellar-base`) have been updated to their latest versions ([#825](https://github.com/stellar/js-stellar-sdk/pull/825), [#827](https://github.com/stellar/js-stellar-sdk/pull/827)). diff --git a/config/webpack.config.browser.js b/config/webpack.config.browser.js index a4a4be74b..6cd2d3a46 100644 --- a/config/webpack.config.browser.js +++ b/config/webpack.config.browser.js @@ -63,7 +63,7 @@ const config = { // Ignore native modules (sodium-native) new webpack.IgnorePlugin({ resourceRegExp: /sodium-native/ }), new NodePolyfillPlugin({ - includeAliases: ["http", "https"] // others aren't needed + includeAliases: ['http', 'https'] // others aren't needed }), new webpack.ProvidePlugin({ Buffer: ['buffer', 'Buffer']