From 58fcd15000ba0961059e41ae9700f3b03391baab Mon Sep 17 00:00:00 2001 From: Stanislav Lashmanov Date: Fri, 18 Oct 2019 20:57:13 +0300 Subject: [PATCH] fix: add missing compiler to the full build on Windows (#333) --- rollup.config.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/rollup.config.js b/rollup.config.js index 56d34528..66b8ddcc 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