vue-c3
Version:
vue-c3 is a reusable vue component for c3 charts
46 lines (42 loc) • 1.12 kB
JavaScript
import resolve from 'rollup-plugin-node-resolve'
import commonjs from 'rollup-plugin-commonjs'
import scss from 'rollup-plugin-scss'
import vue from 'rollup-plugin-vue2'
import pkg from './package.json'
export default [
// browser-friendly UMD build
{
input: 'src/index.js',
output: {
name: 'howLongUntilLunch',
file: pkg.browser,
format: 'umd'
},
plugins: [
resolve(), // so Rollup can find `ms`
commonjs(), // so Rollup can convert `ms` to an ES module
scss(),
vue()
],
external: [ 'c3', 'vue' ]
},
// CommonJS (for Node) and ES module (for bundlers) build.
// (We could have three entries in the configuration array
// instead of two, but it's quicker to generate multiple
// builds from a single configuration where possible, using
// an array for the `output` option, where we can specify
// `file` and `format` for each target)
{
input: 'src/index.js',
external: ['ms'],
output: [
{ file: pkg.main, format: 'cjs' },
{ file: pkg.module, format: 'es' }
],
plugins: [
scss(),
vue()
],
external: [ 'c3', 'vue' ]
}
]