From 82404d3f1c175c639c2542668c0e90f2c8407dcc Mon Sep 17 00:00:00 2001 From: steveluscher Date: Thu, 12 May 2022 14:29:38 -0700 Subject: [PATCH] fix: repair native bigint-buffer binding by preventing module from being bundled (fixes #25159) --- web3.js/rollup.config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web3.js/rollup.config.js b/web3.js/rollup.config.js index a9d84dcb0..ca0b14f93 100644 --- a/web3.js/rollup.config.js +++ b/web3.js/rollup.config.js @@ -55,6 +55,7 @@ function generateConfig(configType, format) { config.external = [ /@babel\/runtime/, '@solana/buffer-layout', + '@solana/buffer-layout-utils', 'bn.js', 'borsh', 'bs58', @@ -112,6 +113,7 @@ function generateConfig(configType, format) { config.external = [ /@babel\/runtime/, '@solana/buffer-layout', + '@solana/buffer-layout-utils', 'bn.js', 'borsh', 'bs58',