]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore: typo isBunlderESMBuild in rollup.config.js (#195)
author二当家的 <1098626505@qq.com>
Fri, 11 Oct 2019 01:48:52 +0000 (09:48 +0800)
committerEvan You <yyx990803@gmail.com>
Fri, 11 Oct 2019 01:48:52 +0000 (21:48 -0400)
rollup.config.js

index 4e875fdff99b9530ea7f03665ade7968263df5c5..52f7941af0afbb10753574df28ee220c269774d4 100644 (file)
@@ -74,7 +74,7 @@ function createConfig(output, plugins = []) {
   const isProductionBuild =
     process.env.__DEV__ === 'false' || /\.prod\.js$/.test(output.file)
   const isGlobalBuild = /\.global(\.prod)?\.js$/.test(output.file)
-  const isBunlderESMBuild = /\.esm\.js$/.test(output.file)
+  const isBundlerESMBuild = /\.esm\.js$/.test(output.file)
   const isBrowserESMBuild = /esm-browser(\.prod)?\.js$/.test(output.file)
 
   if (isGlobalBuild) {
@@ -118,7 +118,7 @@ function createConfig(output, plugins = []) {
       aliasPlugin,
       createReplacePlugin(
         isProductionBuild,
-        isBunlderESMBuild,
+        isBundlerESMBuild,
         (isGlobalBuild || isBrowserESMBuild) &&
           !packageOptions.enableNonBrowserBranches
       ),
@@ -133,10 +133,10 @@ function createConfig(output, plugins = []) {
   }
 }
 
-function createReplacePlugin(isProduction, isBunlderESMBuild, isBrowserBuild) {
+function createReplacePlugin(isProduction, isBundlerESMBuild, isBrowserBuild) {
   return replace({
     __COMMIT__: `"${process.env.COMMIT}"`,
-    __DEV__: isBunlderESMBuild
+    __DEV__: isBundlerESMBuild
       ? // preserve to be handled by bundlers
         `process.env.NODE_ENV !== 'production'`
       : // hard coded dev/prod builds