webpack.release.config.js
const path = require('path')
const TerserPlugin = require('terser-webpack-plugin')
const webpack = require('webpack')
module.exports = {
mode: 'production',
module: {
rules: [
{ test: /\.js$/, loaders: ['babel-loader'], exclude: /node_modules/ },
{
test: /\.svg/,
exclude: /node_modules/,
use: [
'babel-loader',
{
loader: '@svgr/webpack',
options: {
babel: false,
},
},
],
},
],
},
entry: './src/index.js',
optimization: {
minimizer: [
new TerserPlugin({
cache: true,
parallel: true,
terserOptions: {
keep_classnames: true,
keep_fnames: true,
},
}),
],
},
plugins: [
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify('production'),
}),
],
output: {
library: 'Snacks',
libraryTarget: 'umd',
filename: 'snacks.js',
globalObject: "typeof self !== 'undefined' ? self : this",
},
externals: {
react: 'react',
'react-dom': 'react-dom',
'@instacart/radium': '@instacart/radium',
'prop-types': 'prop-types',
},
}