File tree Expand file tree Collapse file tree 2 files changed +11
-13
lines changed Expand file tree Collapse file tree 2 files changed +11
-13
lines changed Original file line number Diff line number Diff line change 66 "author" : " Dipak Sarkar <hello@dipaksarkar.in> (https://dipaksarkar.in/)" ,
77 "main" : " dist/index.cjs.js" ,
88 "module" : " dist/index.esm.js" ,
9- "unpkg" : " dist/index.min.js" ,
10- "style" : " dist/styles.css" ,
119 "licence" : " MIT" ,
1210 "files" : [
1311 " dist/*" ,
Original file line number Diff line number Diff line change 1- import vue from " rollup-plugin-vue" ;
2- import filesize from " rollup-plugin-filesize" ;
3- import pkg from " ./package.json" ;
1+ import vue from ' rollup-plugin-vue'
2+ import filesize from ' rollup-plugin-filesize'
3+ import pkg from ' ./package.json'
44
55const banner = `/**
6- * Vue Number Input ${ pkg . version }
6+ * Vue Number Format ${ pkg . version }
77 * (c) 2021-${ new Date ( ) . getFullYear ( ) } ${ pkg . author }
88 * @license ${ pkg . license }
9- */` ;
9+ */`
1010
1111export default {
12- input : " src/index.js" ,
12+ input : ' src/index.js' ,
1313 output : [
1414 {
1515 file : pkg . main ,
16- format : " cjs" ,
17- exports : " named" ,
16+ format : ' cjs' ,
17+ exports : ' named' ,
1818 banner,
1919 } ,
2020 {
2121 file : pkg . module ,
22- format : "es" ,
23- exports : " named" ,
22+ format : 'es' ,
23+ exports : ' named' ,
2424 banner,
2525 } ,
2626 ] ,
2727 plugins : [ vue ( ) , filesize ( ) ] ,
28- } ;
28+ }
You can’t perform that action at this time.
0 commit comments