File tree 4 files changed +25
-0
lines changed
4 files changed +25
-0
lines changed Original file line number Diff line number Diff line change
1
+ export * from '@vue/compiler-sfc'
Original file line number Diff line number Diff line change 1
1
{
2
2
"main" : " index.js" ,
3
+ "module" : " index.mjs" ,
3
4
"types" : " index.d.ts"
4
5
}
Original file line number Diff line number Diff line change 15
15
" compiler-sfc" ,
16
16
" packages/compiler-sfc"
17
17
],
18
+ "exports" : {
19
+ "." : {
20
+ "import" : {
21
+ "node" : " ./dist/vue.runtime.mjs" ,
22
+ "default" : " ./dist/vue.runtime.esm.js"
23
+ },
24
+ "require" : " ./dist/vue.runtime.common.js" ,
25
+ "types" : " ./types/index.d.ts"
26
+ },
27
+ "./compiler-sfc" : {
28
+ "import" : " ./compiler-sfc/index.mjs" ,
29
+ "require" : " ./compiler-sfc/index.js"
30
+ },
31
+ "./dist/*" : " ./dist/*" ,
32
+ "./types/*" : " ./types/*"
33
+ },
18
34
"sideEffects" : false ,
19
35
"scripts" : {
20
36
"dev" : " rollup -w -c scripts/config.js --environment TARGET:full-dev" ,
Original file line number Diff line number Diff line change @@ -65,6 +65,13 @@ const builds = {
65
65
format : 'es' ,
66
66
banner
67
67
} ,
68
+ // Runtime only ES modules build (for Node)
69
+ 'runtime-mjs' : {
70
+ entry : resolve ( 'web/entry-runtime-esm.ts' ) ,
71
+ dest : resolve ( 'dist/vue.runtime.mjs' ) ,
72
+ format : 'es' ,
73
+ banner
74
+ } ,
68
75
// Runtime+compiler ES modules build (for bundlers)
69
76
'full-esm' : {
70
77
entry : resolve ( 'web/entry-runtime-with-compiler-esm.ts' ) ,
You can’t perform that action at this time.
0 commit comments