redux-devtools/packages/react-json-tree/webpack.config.umd.js

39 lines
801 B
JavaScript
Raw Normal View History

const path = require('path');
2019-01-10 21:51:14 +03:00
module.exports = (env = {}) => ({
mode: env.production ? 'production' : 'development',
2019-01-10 21:51:14 +03:00
entry: {
app: ['./src/index.js'],
2019-01-10 21:51:14 +03:00
},
output: {
library: 'ReactJsonTree',
libraryExport: 'default',
2019-01-10 21:51:14 +03:00
libraryTarget: 'umd',
path: path.resolve(__dirname, 'umd'),
filename: env.production ? 'react-json-tree.min.js' : 'react-json-tree.js',
2019-01-10 21:51:14 +03:00
},
module: {
rules: [
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/,
},
],
2019-01-10 21:51:14 +03:00
},
externals: {
react: {
root: 'React',
commonjs2: 'react',
commonjs: 'react',
amd: 'react',
},
2019-01-10 21:51:14 +03:00
'react-dom': {
root: 'ReactDOM',
commonjs2: 'react-dom',
commonjs: 'react-dom',
amd: 'react-dom',
},
2019-01-10 21:51:14 +03:00
},
});