mirror of
https://github.com/gosticks/react-table.git
synced 2025-10-16 11:55:36 +00:00
21 lines
375 B
JavaScript
21 lines
375 B
JavaScript
const webpack = require('webpack')
|
|
module.exports = {
|
|
entry: './lib/index.js',
|
|
output: {
|
|
filename: './react-table.js',
|
|
libraryTarget: 'umd',
|
|
library: 'ReactTable'
|
|
},
|
|
externals: {
|
|
react: {
|
|
root: 'React',
|
|
commonjs2: 'react',
|
|
commonjs: 'react',
|
|
amd: 'react'
|
|
}
|
|
},
|
|
plugins: [
|
|
new webpack.optimize.UglifyJsPlugin()
|
|
]
|
|
}
|