You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
439 B
JavaScript
22 lines
439 B
JavaScript
import resolve from 'rollup-plugin-node-resolve'
|
|
import vue from 'rollup-plugin-vue'
|
|
import commonjs from 'rollup-plugin-commonjs'
|
|
import babel from 'rollup-plugin-babel'
|
|
|
|
export default {
|
|
input: 'build/entry.js',
|
|
output: {
|
|
format: 'umd',
|
|
file: 'dist/datav.map.vue.js',
|
|
name: 'datav'
|
|
},
|
|
plugins: [
|
|
resolve(),
|
|
babel({
|
|
exclude: 'node_modules/**'
|
|
}),
|
|
commonjs(),
|
|
vue(),
|
|
],
|
|
external: ['Vue']
|
|
} |