mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-13 05:06:50 +03:00
42 lines
1020 B
JavaScript
42 lines
1020 B
JavaScript
var path = require('path');
|
|
var webpack = require('webpack');
|
|
|
|
module.exports = {
|
|
devtool: 'source-map',
|
|
entry: ['webpack-hot-middleware/client', './index'],
|
|
output: {
|
|
path: path.join(__dirname, 'dist'),
|
|
filename: 'bundle.js',
|
|
publicPath: '/static/',
|
|
},
|
|
plugins: [
|
|
new webpack.optimize.OccurenceOrderPlugin(),
|
|
new webpack.HotModuleReplacementPlugin(),
|
|
new webpack.NoErrorsPlugin(),
|
|
],
|
|
module: {
|
|
loaders: [
|
|
{
|
|
test: /\.js$/,
|
|
loaders: ['babel'],
|
|
exclude: /node_modules/,
|
|
include: __dirname,
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
var src = path.join(__dirname, '..', '..', 'src');
|
|
var nodeModules = path.join(__dirname, '..', '..', 'node_modules');
|
|
var fs = require('fs');
|
|
if (fs.existsSync(src) && fs.existsSync(nodeModules)) {
|
|
// Resolve to source
|
|
module.exports.resolve = { alias: { 'remote-redux-devtools': src } };
|
|
// Compile from source
|
|
module.exports.module.loaders.push({
|
|
test: /\.js$/,
|
|
loaders: ['babel'],
|
|
include: src,
|
|
});
|
|
}
|