Skip to content

Commit

Permalink
build: disable reexportProtoFromExternal in rollup config
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Feb 26, 2024
1 parent a24809f commit b3bd3a2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,8 @@ function createConfig(format, output, plugins = []) {
}
output.sourcemap = !!process.env.SOURCE_MAP
output.externalLiveBindings = false
// https://github.com/rollup/rollup/pull/5380
output.reexportProtoFromExternal = false

if (isGlobalBuild) {
output.name = packageOptions.name
Expand Down

0 comments on commit b3bd3a2

Please sign in to comment.