Skip to content

Commit

Permalink
fix: add missing compiler to the full build on Windows (vuejs#333)
Browse files Browse the repository at this point in the history
  • Loading branch information
CyberAP authored and yyx990803 committed Oct 18, 2019
1 parent 2238925 commit 58fcd15
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 58fcd15

Please sign in to comment.