@@ -60,22 +60,22 @@ const builds = {
60
60
} ,
61
61
// Runtime only ES modules build (for bundlers)
62
62
'web-runtime-esm' : {
63
- entry : resolve ( 'web/entry-runtime.ts' ) ,
63
+ entry : resolve ( 'web/entry-runtime-esm .ts' ) ,
64
64
dest : resolve ( 'dist/vue.runtime.esm.js' ) ,
65
65
format : 'es' ,
66
66
banner
67
67
} ,
68
68
// Runtime+compiler ES modules build (for bundlers)
69
69
'web-full-esm' : {
70
- entry : resolve ( 'web/entry-runtime-with-compiler.ts' ) ,
70
+ entry : resolve ( 'web/entry-runtime-with-compiler-esm .ts' ) ,
71
71
dest : resolve ( 'dist/vue.esm.js' ) ,
72
72
format : 'es' ,
73
73
alias : { he : './entity-decoder' } ,
74
74
banner
75
75
} ,
76
76
// Runtime+compiler ES modules build (for direct import in browser)
77
77
'web-full-esm-browser-dev' : {
78
- entry : resolve ( 'web/entry-runtime-with-compiler.ts' ) ,
78
+ entry : resolve ( 'web/entry-runtime-with-compiler-esm .ts' ) ,
79
79
dest : resolve ( 'dist/vue.esm.browser.js' ) ,
80
80
format : 'es' ,
81
81
transpile : false ,
@@ -85,7 +85,7 @@ const builds = {
85
85
} ,
86
86
// Runtime+compiler ES modules build (for direct import in browser)
87
87
'web-full-esm-browser-prod' : {
88
- entry : resolve ( 'web/entry-runtime-with-compiler.ts' ) ,
88
+ entry : resolve ( 'web/entry-runtime-with-compiler-esm .ts' ) ,
89
89
dest : resolve ( 'dist/vue.esm.browser.min.js' ) ,
90
90
format : 'es' ,
91
91
transpile : false ,
0 commit comments