From: Stanislav Lashmanov Date: Fri, 18 Oct 2019 17:57:13 +0000 (+0300) Subject: fix: add missing compiler to the full build on Windows (#333) X-Git-Tag: v3.0.0-alpha.0~379 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=58fcd15000ba0961059e41ae9700f3b03391baab;p=thirdparty%2Fvuejs%2Fcore.git fix: add missing compiler to the full build on Windows (#333) --- diff --git a/rollup.config.js b/rollup.config.js index 56d34528a7..66b8ddcce6 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -77,9 +77,7 @@ function createConfig(output, plugins = []) { const isGlobalBuild = /\.global(\.prod)?\.js$/.test(output.file) const isBundlerESMBuild = /\.esm-bundler\.js$/.test(output.file) const isBrowserESMBuild = /esm-browser(\.prod)?\.js$/.test(output.file) - const isRuntimeCompileBuild = /\/vue\./.test(output.file) - - console.log(isBundlerESMBuild) + const isRuntimeCompileBuild = /vue\./.test(output.file) if (isGlobalBuild) { output.name = packageOptions.name