b9f4d7b307
The app now uses AppImage instead of .deb files for Linux. Thanks to this change, the app supports now auto-updates on Linux too. The publishing workflow has been updated. It uses now the publishing mechanisms offered by electron-builder.
33 lines
917 B
JavaScript
33 lines
917 B
JavaScript
const path = require('path');
|
|
const FlowFlowPlugin = require('./flowtype-plugin');
|
|
const isDev = require('electron-is-dev');
|
|
|
|
const ELECTRON_RENDERER_PROCESS_ROOT = path.resolve(__dirname, 'src/renderer/');
|
|
|
|
module.exports = {
|
|
// This rule is temporarily necessary until https://github.com/electron-userland/electron-webpack/issues/60 is fixed.
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.jsx?$/,
|
|
loader: 'babel-loader',
|
|
options: {
|
|
presets: ['env', 'react', 'stage-2'],
|
|
},
|
|
},
|
|
],
|
|
},
|
|
// This allows imports to be made from the renderer process root (https://moduscreate.com/blog/es6-es2015-import-no-relative-path-webpack/).
|
|
resolve: {
|
|
modules: [ELECTRON_RENDERER_PROCESS_ROOT, 'node_modules', __dirname],
|
|
extensions: ['.js', '.jsx', '.scss'],
|
|
},
|
|
};
|
|
|
|
if (isDev) {
|
|
module.exports.plugins = [
|
|
new FlowFlowPlugin({
|
|
warn: true,
|
|
}),
|
|
];
|
|
}
|