mirror of
https://github.com/pavlobu/deskreen.git
synced 2025-05-21 09:50:13 -07:00
77 lines
1.9 KiB
JavaScript
77 lines
1.9 KiB
JavaScript
/**
|
|
* Webpack config for production electron main process
|
|
*/
|
|
|
|
import path from 'path';
|
|
import webpack from 'webpack';
|
|
import { merge } from 'webpack-merge';
|
|
import TerserPlugin from 'terser-webpack-plugin';
|
|
import { BundleAnalyzerPlugin } from 'webpack-bundle-analyzer';
|
|
import baseConfig from './webpack.config.base';
|
|
import CheckNodeEnv from '../internals/scripts/CheckNodeEnv';
|
|
import DeleteSourceMaps from '../internals/scripts/DeleteSourceMaps';
|
|
|
|
CheckNodeEnv('production');
|
|
DeleteSourceMaps();
|
|
|
|
export default merge(baseConfig, {
|
|
devtool: process.env.DEBUG_PROD === 'true' ? 'source-map' : 'none',
|
|
|
|
mode: 'production',
|
|
|
|
target: 'electron-main',
|
|
|
|
entry: './app/main.dev.ts',
|
|
|
|
output: {
|
|
path: path.join(__dirname, '..'),
|
|
filename: './app/main.prod.js',
|
|
},
|
|
|
|
optimization: {
|
|
minimizer: process.env.E2E_BUILD
|
|
? []
|
|
: [
|
|
new TerserPlugin({
|
|
parallel: true,
|
|
sourceMap: true,
|
|
cache: true,
|
|
}),
|
|
],
|
|
},
|
|
|
|
plugins: [
|
|
new BundleAnalyzerPlugin({
|
|
analyzerMode:
|
|
process.env.OPEN_ANALYZER === 'true' ? 'server' : 'disabled',
|
|
openAnalyzer: process.env.OPEN_ANALYZER === 'true',
|
|
}),
|
|
|
|
/**
|
|
* Create global constants which can be configured at compile time.
|
|
*
|
|
* Useful for allowing different behaviour between development builds and
|
|
* release builds
|
|
*
|
|
* NODE_ENV should be production so that modules do not perform certain
|
|
* development checks
|
|
*/
|
|
new webpack.EnvironmentPlugin({
|
|
NODE_ENV: 'production',
|
|
DEBUG_PROD: false,
|
|
START_MINIMIZED: false,
|
|
E2E_BUILD: false,
|
|
}),
|
|
],
|
|
|
|
/**
|
|
* Disables webpack processing of __dirname and __filename.
|
|
* If you run the bundle in node.js it falls back to these values of node.js.
|
|
* https://github.com/webpack/webpack/issues/2010
|
|
*/
|
|
node: {
|
|
__dirname: false,
|
|
__filename: false,
|
|
},
|
|
});
|