mirror of
https://github.com/scratchfoundation/scratch-desktop.git
synced 2024-12-23 06:02:30 -05:00
5a1526c1e5
minor code changes required for uuid, eslint-config-scratch, and uglifyjs-webpack-plugin
75 lines
2.6 KiB
JavaScript
75 lines
2.6 KiB
JavaScript
const childProcess = require('child_process');
|
|
|
|
const electronPath = require('electron');
|
|
const webpack = require('webpack');
|
|
|
|
const isProduction = (process.env.NODE_ENV === 'production');
|
|
|
|
const electronVersion = childProcess.execSync(`${electronPath} --version`, {encoding: 'utf8'}).trim();
|
|
console.log(`Targeting Electron ${electronVersion}`); // eslint-disable-line no-console
|
|
|
|
const makeConfig = function (options) {
|
|
// eslint-disable-next-line no-console
|
|
console.log(`Module "${options.name}" building in production mode? ${isProduction}`);
|
|
|
|
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: electronVersion}}]
|
|
]
|
|
};
|
|
|
|
const sourceFileTest = options.useReact ? /\.jsx?$/ : /\.js$/;
|
|
if (options.useReact) {
|
|
babelOptions.presets = babelOptions.presets.concat('@babel/preset-react');
|
|
babelOptions.plugins.push(['react-intl', {
|
|
messagesDir: './translations/messages/'
|
|
}]);
|
|
}
|
|
|
|
return {
|
|
devtool: 'cheap-module-eval-source-map',
|
|
mode: isProduction ? 'production' : 'development',
|
|
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
|
|
},
|
|
// Add a new rule for the other files we want to run through babel
|
|
{
|
|
test: sourceFileTest,
|
|
include: options.babelPaths,
|
|
loader: 'babel-loader',
|
|
options: babelOptions
|
|
},
|
|
{
|
|
test: sourceFileTest,
|
|
loader: 'source-map-loader',
|
|
enforce: 'pre'
|
|
}
|
|
]
|
|
},
|
|
plugins: [
|
|
new webpack.SourceMapDevToolPlugin({
|
|
filename: '[file].map'
|
|
})
|
|
].concat(options.plugins || []),
|
|
resolve: {
|
|
cacheWithContext: false,
|
|
symlinks: false
|
|
}
|
|
};
|
|
};
|
|
|
|
module.exports = makeConfig;
|