File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ function createEntries() {
26
26
27
27
function createEntry ( config ) {
28
28
const isGlobalBuild = config . format === 'iife'
29
- const isBunderBuild = config . format !== 'iife' && ! config . browser
29
+ const isBundlerBuild = config . format !== 'iife' && ! config . browser
30
30
31
31
const c = {
32
32
external : [ 'vue' ] ,
@@ -58,10 +58,10 @@ function createEntry(config) {
58
58
c . plugins . push ( replace ( {
59
59
preventAssignment : true ,
60
60
__VERSION__ : pkg . version ,
61
- __DEV__ : isBunderBuild
61
+ __DEV__ : isBundlerBuild
62
62
? `(process.env.NODE_ENV !== 'production')`
63
63
: config . env !== 'production' ,
64
- __VUE_PROD_DEVTOOLS__ : isBunderBuild ? '__VUE_PROD_DEVTOOLS__' : 'false'
64
+ __VUE_PROD_DEVTOOLS__ : isBundlerBuild ? '__VUE_PROD_DEVTOOLS__' : 'false'
65
65
} ) )
66
66
67
67
if ( config . transpile !== false ) {
You can’t perform that action at this time.
0 commit comments