StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.0 KiB
61 lines
1.0 KiB
import buble from 'rollup-plugin-buble'
|
|
import { uglify } from 'rollup-plugin-uglify'
|
|
import resolve from 'rollup-plugin-node-resolve'
|
|
import commonjs from 'rollup-plugin-commonjs'
|
|
import pkg from './package.json'
|
|
|
|
const browser = {
|
|
input: 'src/index.js',
|
|
output: {
|
|
format: 'umd',
|
|
name: 'Vue2PerfectScrollbar',
|
|
file: pkg.browser
|
|
},
|
|
plugins: [
|
|
buble(),
|
|
resolve({
|
|
browser: true, jsnext: true, main: true
|
|
}),
|
|
commonjs()
|
|
]
|
|
}
|
|
|
|
const browserMin = {
|
|
input: 'src/index.js',
|
|
output: {
|
|
format: 'umd',
|
|
name: 'Vue2PerfectScrollbar',
|
|
file: 'dist/vue2-perfect-scrollbar.umd.min.js'
|
|
},
|
|
plugins: [
|
|
resolve({
|
|
browser: true, jsnext: true, main: true
|
|
}),
|
|
commonjs(),
|
|
buble(),
|
|
uglify()
|
|
]
|
|
}
|
|
|
|
const nodeModules = {
|
|
input: 'src/index.js',
|
|
output: [
|
|
{
|
|
format: 'cjs',
|
|
file: pkg.main
|
|
},
|
|
{
|
|
format: 'esm',
|
|
file: pkg.module
|
|
}
|
|
],
|
|
plugins: [
|
|
],
|
|
external: [ 'perfect-scrollbar' ]
|
|
}
|
|
|
|
export default [
|
|
browser,
|
|
browserMin,
|
|
nodeModules
|
|
]
|
|
|