2018-09-26 21:16:35 -04:00
|
|
|
const path = require('path');
|
|
|
|
|
2018-09-27 15:44:30 -04:00
|
|
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
2018-10-18 22:03:56 -04:00
|
|
|
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
|
|
|
|
|
|
|
|
const babelOptions = {
|
|
|
|
// Explicitly disable babelrc so we don't catch various config
|
|
|
|
// in much lower dependencies.
|
|
|
|
babelrc: false,
|
|
|
|
plugins: [
|
|
|
|
'@babel/proposal-object-rest-spread',
|
|
|
|
// 'syntax-dynamic-import',
|
|
|
|
// 'transform-async-to-generator',
|
|
|
|
['react-intl', {
|
|
|
|
messagesDir: './translations/messages/'
|
|
|
|
}]
|
|
|
|
],
|
|
|
|
presets: [
|
|
|
|
['@babel/env', {targets: {electron: '3.0.2'}}],
|
|
|
|
'@babel/react'
|
|
|
|
]
|
|
|
|
};
|
2018-09-27 15:44:30 -04:00
|
|
|
|
2018-09-26 21:16:35 -04:00
|
|
|
module.exports = {
|
2018-10-18 22:03:56 -04:00
|
|
|
devtool: 'cheap-module-source-map',
|
2018-09-26 21:16:35 -04:00
|
|
|
module: {
|
|
|
|
rules: [
|
2018-10-18 22:03:56 -04:00
|
|
|
// Override the *.js defaults from electron-webpack
|
|
|
|
// The test/include/exclude must match the defaults exactly for webpack-merge to do the override
|
2018-09-26 21:16:35 -04:00
|
|
|
{
|
2018-10-18 22:03:56 -04:00
|
|
|
test: /\.js$/,
|
|
|
|
exclude: /(node_modules|bower_components)/,
|
2018-09-26 21:16:35 -04:00
|
|
|
loader: 'babel-loader',
|
2018-10-18 22:03:56 -04:00
|
|
|
options: babelOptions
|
|
|
|
},
|
|
|
|
// Add a new rule for the other files we want to run through babel
|
|
|
|
{
|
|
|
|
test: /\.jsx?$/,
|
2018-09-27 15:13:26 -04:00
|
|
|
include: [
|
|
|
|
path.resolve(__dirname, 'src', 'renderer'),
|
|
|
|
/node_modules[\\/]scratch-[^\\/]+[\\/]src/
|
|
|
|
],
|
2018-10-18 22:03:56 -04:00
|
|
|
loader: 'babel-loader',
|
|
|
|
options: babelOptions
|
2018-09-26 21:16:35 -04:00
|
|
|
}
|
|
|
|
]
|
2018-09-27 15:44:30 -04:00
|
|
|
},
|
2018-10-13 04:09:45 -04:00
|
|
|
optimization: {
|
2018-10-18 22:03:56 -04:00
|
|
|
// 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,
|
|
|
|
sourceMap: false // takes too long and runs out of memory :(
|
|
|
|
})],
|
2018-10-13 04:09:45 -04:00
|
|
|
splitChunks: {
|
|
|
|
chunks: 'all'
|
|
|
|
}
|
|
|
|
},
|
2018-09-27 15:44:30 -04:00
|
|
|
plugins: [
|
|
|
|
new CopyWebpackPlugin([{
|
|
|
|
from: path.resolve(__dirname, 'node_modules', 'scratch-gui', 'dist', 'static'),
|
|
|
|
to: 'static'
|
|
|
|
}])
|
2018-10-18 22:03:56 -04:00
|
|
|
],
|
|
|
|
resolve: {
|
|
|
|
symlinks: false
|
|
|
|
}
|
2018-09-26 21:16:35 -04:00
|
|
|
};
|