@domoinc/multiline-chart
Version:
MultiLineChart - Domo Widget
23 lines (22 loc) • 437 B
JavaScript
var webpack = require('webpack');
module.exports = {
entry: './theme2',
output: {
path: __dirname + '/dist',
publicPath: '/dist/',
filename: 'bundle.js',
libraryTarget: 'umd',
library: ['da', 'theme2']
},
plugins: [
new webpack.BannerPlugin('Copyright 2016 Domo Inc.')
],
externals: {
lodash: {
root: '_',
commonjs: 'lodash',
commonjs2: 'lodash',
amd: 'lodash'
}
}
}