From: Evan You Date: Mon, 26 Feb 2024 01:53:59 +0000 (+0800) Subject: build: disable reexportProtoFromExternal in rollup config X-Git-Tag: v3.4.20~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b3bd3a210aec72d5253c50b27c621d608d2b7a07;p=thirdparty%2Fvuejs%2Fcore.git build: disable reexportProtoFromExternal in rollup config --- diff --git a/rollup.config.js b/rollup.config.js index 657b711b1a..6ab5ca4294 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -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