From 53ceaa983822d972ff9eba2eff616de1f8615c92 Mon Sep 17 00:00:00 2001 From: Nathan Nichols Date: Tue, 21 Sep 2021 13:15:43 -0700 Subject: [PATCH] rename browser library (#1637) * rename browser library --- webpack.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index 6dd71857..fd37dc78 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -11,7 +11,7 @@ function getDefaultConfiguration() { stats: 'errors-only', entry: './dist/npm/index.js', output: { - library: 'ripple', + library: 'xrpl', path: path.join(__dirname, 'build/'), filename: `xrpl.default.js`, }, @@ -60,7 +60,7 @@ function webpackForTest(testFileName) { cache: true, externals: [ { - 'xrpl-local': 'ripple', + 'xrpl-local': 'xrpl', net: 'null', }, ],