Skip to content

Commit 74e219b

Browse files
committed
Rollup basic configuration
1 parent 9a5243f commit 74e219b

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

build/rollup.config.js

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import vue from 'rollup-plugin-vue'
2+
import buble from 'rollup-plugin-buble'
3+
import uglify from 'rollup-plugin-uglify-es'
4+
5+
export default {
6+
input: 'index.js',
7+
output: {
8+
name: 'VueTinyPagination',
9+
exports: 'named'
10+
},
11+
plugins: [
12+
vue({
13+
css: true,
14+
compileTemplate: true
15+
}),
16+
buble(),
17+
uglify()
18+
]
19+
}

0 commit comments

Comments
 (0)