2018-10-19 20:45:45 -04:00
|
|
|
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
|
2018-12-12 12:05:19 -05:00
|
|
|
const webpack = require('webpack');
|
|
|
|
|
|
|
|
const isProduction = (process.env.NODE_ENV === 'production');
|
|
|
|
|
|
|
|
console.log(`Main module building in production mode? ${isProduction}`);
|
2018-10-19 20:45:45 -04:00
|
|
|
|
|
|
|
const babelOptions = {
|
|
|
|
// Explicitly disable babelrc so we don't catch various config
|
|
|
|
// in much lower dependencies.
|
|
|
|
babelrc: false,
|
|
|
|
plugins: [
|
|
|
|
'@babel/plugin-syntax-dynamic-import',
|
|
|
|
'@babel/plugin-transform-async-to-generator',
|
|
|
|
'@babel/plugin-proposal-object-rest-spread'
|
|
|
|
],
|
|
|
|
presets: [
|
|
|
|
['@babel/preset-env', {targets: {electron: '3.0.2'}}]
|
|
|
|
]
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = {
|
2018-12-12 12:05:19 -05:00
|
|
|
mode: isProduction ? 'production' : 'development',
|
2018-10-19 20:45:45 -04:00
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
// Override the *.js defaults from electron-webpack
|
|
|
|
// The test/include/exclude must match the defaults exactly for webpack-merge to do the override
|
|
|
|
{
|
|
|
|
test: /\.js$/,
|
|
|
|
exclude: /(node_modules|bower_components)/,
|
|
|
|
loader: 'babel-loader',
|
|
|
|
options: babelOptions
|
2018-12-12 12:05:19 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /.js$/,
|
|
|
|
loader: 'source-map-loader',
|
|
|
|
enforce: 'pre'
|
2018-10-19 20:45:45 -04:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
optimization: {
|
|
|
|
// Use `--env.minify=false` to disable the UglifyJsPlugin instance automatically injected by electron-webpack.
|
|
|
|
// Otherwise it will do double-duty with this one.
|
|
|
|
minimizer: [new UglifyJsPlugin({
|
|
|
|
cache: true,
|
|
|
|
parallel: true,
|
2018-12-12 12:05:19 -05:00
|
|
|
sourceMap: true, // disable this if UglifyJSPlugin takes too long and/or runs out of memory
|
|
|
|
uglifyOptions: {
|
|
|
|
compress: isProduction ? {} : false,
|
|
|
|
mangle: isProduction
|
|
|
|
}
|
2018-10-19 20:45:45 -04:00
|
|
|
})],
|
|
|
|
splitChunks: {
|
|
|
|
chunks: 'all'
|
|
|
|
}
|
|
|
|
},
|
2018-12-12 12:05:19 -05:00
|
|
|
plugins: [
|
|
|
|
new webpack.SourceMapDevToolPlugin({
|
|
|
|
filename: '[file].map'
|
|
|
|
})
|
|
|
|
],
|
2018-10-19 20:45:45 -04:00
|
|
|
resolve: {
|
|
|
|
symlinks: false
|
|
|
|
}
|
|
|
|
};
|