lbry-desktop/webpack.dev.config.js
Job Evers-Meltzer 3394f964dd Add a dev build configuration
Add caching and a faster source map for the dev builds.
This brings the rebuild time down to about 500ms for me.

dev build now puts the bundle in the electron app/js directory
so that the app can be automatically reloaded
2017-02-14 17:12:27 -06:00

42 lines
832 B
JavaScript

const path = require('path');
const PATHS = {
app: path.join(__dirname, 'app'),
dist: path.join(__dirname, '..', 'app', 'dist')
};
module.exports = {
entry: ['babel-polyfill', './js/main.js'],
output: {
path: path.join(PATHS.dist, 'js'),
publicPath: '/js/',
filename: "bundle.js",
pathinfo: true
},
debug: true,
cache: true,
devtool: 'eval',
module: {
preLoaders: [
{
test: /\.jsx?$/,
loaders: ['eslint'],
// define an include so we check just the files we need
include: PATHS.app
}
],
loaders: [
{ test: /\.css$/, loader: "style!css" },
{
test: /\.jsx?$/,
loader: 'babel',
query: {
cacheDirectory: true,
presets:[ 'es2015', 'react', 'stage-2' ]
}
}
]
},
target: 'electron-main',
};