lbry-desktop/ui/webpack.dev.config.js

55 lines
1.2 KiB
JavaScript
Raw Normal View History

const path = require('path');
const webpack = require('webpack')
2017-05-05 06:28:30 +02:00
const WebpackNotifierPlugin = require('webpack-notifier')
2017-04-07 07:15:22 +02:00
const appPath = path.resolve(__dirname, 'js');
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',
2017-04-07 07:15:22 +02:00
resolve: {
root: appPath,
extensions: ['', '.js', '.jsx', '.css'],
},
2017-05-05 06:28:30 +02:00
plugins: [
new WebpackNotifierPlugin(),
new webpack.DefinePlugin({
ENV: JSON.stringify("development"),
}),
2017-05-05 06:28:30 +02:00
],
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" },
{
2017-04-07 07:15:22 +02:00
test: /\.jsx?$/,
loader: 'babel',
query: {
cacheDirectory: true,
presets:[ 'es2015', 'react', 'stage-2' ]
}
}
]
},
target: 'electron-main',
};