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.
StackGenVis/frontend/node_modules/@fortawesome/vue-fontawesome/rollup.config.js

55 lines
1008 B

4 years ago
import resolve from 'rollup-plugin-node-resolve'
import commonJs from 'rollup-plugin-commonjs'
import babel from 'rollup-plugin-babel'
const name = 'vue-fontawesome'
const globals = {
'@fortawesome/fontawesome-svg-core': 'FontAwesome'
}
export default {
external: [
'@fortawesome/fontawesome-svg-core'
],
input: 'src/index.js',
output: [
{
name,
globals,
format: 'umd',
exports: 'named',
file: 'index.js',
},
{
name,
globals,
format: 'es',
file: 'index.es.js'
}
],
plugins: [
resolve({
jsnext: true,
main: true
}),
commonJs({
include: 'node_modules/**'
}),
babel({
babelrc: false,
presets: [
['env', {
debug: true,
targets: {"browsers": ["> 1%", "last 2 versions", "ie > 9"]},
modules: false
}],
'stage-3'
],
plugins: [
'external-helpers'
],
exclude: 'node_modules/**'
})
]
}