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.
24 lines
499 B
JavaScript
24 lines
499 B
JavaScript
3 months ago
|
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'
|
||
|
import { terser } from "rollup-plugin-terser"
|
||
|
|
||
|
export default {
|
||
|
input: 'build/entry.js',
|
||
|
output: {
|
||
|
format: 'umd',
|
||
|
file: 'dist/datav.min.vue.js',
|
||
|
name: 'datav'
|
||
|
},
|
||
|
plugins: [
|
||
|
resolve(),
|
||
|
babel({
|
||
|
exclude: 'node_modules/**'
|
||
|
}),
|
||
|
commonjs(),
|
||
|
vue(),
|
||
|
terser(),
|
||
|
],
|
||
|
external: ['Vue']
|
||
|
}
|