Skip to content

Commit 3849f05

Browse files
committed
updated project
1 parent 5447b7a commit 3849f05

File tree

2 files changed

+11
-13
lines changed

2 files changed

+11
-13
lines changed

package.json

-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
"author": "Dipak Sarkar <[email protected]> (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/*",

rollup.config.js

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
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

55
const 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

1111
export 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+
}

0 commit comments

Comments
 (0)