scratch-desktop/webpack.renderer.additions.js

70 lines
2.1 KiB
JavaScript
Raw Normal View History

const path = require('path');
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'
]
};
module.exports = {
2018-10-18 22:03:56 -04:00
devtool: 'cheap-module-source-map',
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-10-18 22:03:56 -04:00
test: /\.js$/,
exclude: /(node_modules|bower_components)/,
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?$/,
include: [
path.resolve(__dirname, 'src', 'renderer'),
/node_modules[\\/]scratch-[^\\/]+[\\/]src/
],
2018-10-18 22:03:56 -04:00
loader: 'babel-loader',
options: babelOptions
}
]
},
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 :(
})],
splitChunks: {
chunks: 'all'
}
},
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
}
};