File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 3737 "rollup-plugin-babel" : " ^4.3.2" ,
3838 "rollup-plugin-commonjs" : " ^9.3.4" ,
3939 "rollup-plugin-css-only" : " ^1.0.0" ,
40- "rollup-plugin-json" : " ^4.0.0" ,
4140 "rollup-plugin-node-resolve" : " ^5.0.0" ,
4241 "rollup-plugin-vue" : " ^5.0.0" ,
4342 "validate-commit-msg" : " ^2.14.0" ,
Original file line number Diff line number Diff line change 11import * as path from "path" ;
22import cjs from "rollup-plugin-commonjs" ;
3- import node from "rollup-plugin-node-resolve" ;
43import babel from "rollup-plugin-babel" ;
54import vue from "rollup-plugin-vue" ;
65import css from "rollup-plugin-css-only" ;
7- import json from "rollup-plugin-json" ;
86
97const resolve = _path => path . resolve ( __dirname , _path ) ;
108
@@ -18,27 +16,26 @@ export default {
1816 } ,
1917 {
2018 file : resolve ( `./dist/vue-live.esm.js` ) ,
21- format : "es "
19+ format : "esm "
2220 }
2321 ] ,
2422 plugins : [
2523 cjs ( ) ,
26- node ( ) ,
2724 babel ( {
2825 babelrc : false ,
2926 presets : [ [ "@vue/babel-preset-app" , { useBuiltIns : false } ] ] ,
3027 extensions : [ ".js" ] ,
3128 runtimeHelpers : true
3229 } ) ,
3330 vue ( ) ,
34- css ( ) ,
35- json ( )
31+ css ( )
3632 ] ,
3733 external : [
3834 "debounce" ,
3935 "vue-inbrowser-compiler" ,
4036 "prismjs" ,
4137 "prismjs/components/prism-jsx.min" ,
42- "vue-prism-editor"
38+ "vue-prism-editor" ,
39+ "hash-sum"
4340 ]
4441} ;
You can’t perform that action at this time.
0 commit comments