redux-devtools/packages/redux-devtools-test-generator/webpack.config.js

82 lines
1.9 KiB
JavaScript
Raw Normal View History

const path = require('path');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const pkg = require('./package.json');
const isProduction = process.env.NODE_ENV === 'production';
module.exports = {
2020-08-01 22:30:39 +03:00
devtool: 'eval-source-map',
2019-01-10 21:51:14 +03:00
entry: isProduction
? ['./demo/src/js/index']
: [
'webpack-dev-server/client?http://localhost:3000',
'webpack/hot/only-dev-server',
'./demo/src/js/index',
2019-01-10 21:51:14 +03:00
],
output: {
path: path.join(__dirname, 'demo/dist'),
filename: 'js/bundle.js',
},
plugins: [
new CleanWebpackPlugin(),
new HtmlWebpackPlugin({
inject: true,
template: 'demo/src/index.html',
package: pkg,
}),
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(process.env.NODE_ENV),
},
}),
2019-01-10 21:51:14 +03:00
].concat(
isProduction
? [
new webpack.optimize.UglifyJsPlugin({
compress: { warnings: false },
output: { comments: false },
}),
2019-01-10 21:51:14 +03:00
]
: [new webpack.HotModuleReplacementPlugin()]
2019-01-10 21:51:14 +03:00
),
resolve: {
extensions: ['.js', '.jsx'],
},
module: {
2019-01-10 21:51:14 +03:00
rules: [
{
test: /\.jsx?$/,
loader: 'babel-loader',
include: [
path.join(__dirname, 'src'),
path.join(__dirname, 'demo/src/js'),
],
2019-01-10 21:51:14 +03:00
},
{
test: /\.css$/,
use: [{ loader: 'style-loader' }, { loader: 'css-loader' }],
2019-01-10 21:51:14 +03:00
},
{
test: /\.(ttf|eot|svg|woff|woff2)$/,
loader: 'file-loader',
options: { outputPath: 'fonts/', publicPath: 'fonts/' },
},
],
},
2019-01-10 21:51:14 +03:00
devServer: isProduction
? null
: {
quiet: false,
port: 3001,
hot: true,
stats: {
chunkModules: false,
colors: true,
2019-01-10 21:51:14 +03:00
},
historyApiFallback: true,
},
};