add preserveEntrySignatures: false to other rollup bundles

This commit is contained in:
Conduitry
2020-05-22 09:21:30 -04:00
parent cf20533a71
commit 834bf5027d

View File

@@ -80,6 +80,7 @@ export default {
require('module').builtinModules || Object.keys(process.binding('natives')) require('module').builtinModules || Object.keys(process.binding('natives'))
), ),
preserveEntrySignatures: false,
onwarn, onwarn,
}, },
@@ -96,6 +97,7 @@ export default {
!dev && terser() !dev && terser()
], ],
preserveEntrySignatures: false,
onwarn, onwarn,
} }
}; };