From 834bf5027dbd28457e4a25da4d67cc5533a00f2a Mon Sep 17 00:00:00 2001 From: Conduitry Date: Fri, 22 May 2020 09:21:30 -0400 Subject: [PATCH] add `preserveEntrySignatures: false` to other rollup bundles --- rollup.config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rollup.config.js b/rollup.config.js index 5a255ec..3d5ac14 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -80,6 +80,7 @@ export default { require('module').builtinModules || Object.keys(process.binding('natives')) ), + preserveEntrySignatures: false, onwarn, }, @@ -96,6 +97,7 @@ export default { !dev && terser() ], + preserveEntrySignatures: false, onwarn, } };