mirror of
https://github.com/gosticks/react-bootstrap-table2.git
synced 2025-10-16 11:55:39 +00:00
17 lines
548 B
JavaScript
17 lines
548 B
JavaScript
import * as path from 'path';
|
|
import umdConfig from './webpack.umd.babel';
|
|
|
|
module.exports = {
|
|
...umdConfig,
|
|
entry: {
|
|
'react-bootstrap-table2-toolkit/dist/react-bootstrap-table2-toolkit': './packages/react-bootstrap-table2-toolkit/index.js',
|
|
'react-bootstrap-table2-toolkit/dist/react-bootstrap-table2-toolkit.min': './packages/react-bootstrap-table2-toolkit/index.js'
|
|
},
|
|
output: {
|
|
path: path.join(__dirname, '../packages'),
|
|
filename: '[name].js',
|
|
library: 'ReactBootstrapTable2Toolkit',
|
|
libraryTarget: 'umd'
|
|
}
|
|
};
|