Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions webpack.electron.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const { DefinePlugin, NoEmitOnErrorsPlugin, ProgressPlugin } = require('webpack');
const { DefinePlugin, NoEmitOnErrorsPlugin } = require('webpack');
const path = require('path');
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');

Expand Down Expand Up @@ -34,7 +34,6 @@ const config = {
},
plugins: [
new NoEmitOnErrorsPlugin(),
new ProgressPlugin(),
new DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(process.env.NODE_ENV)
Expand All @@ -48,7 +47,11 @@ const config = {
target: 'electron-main',
externals: {
nodegit: 'require("nodegit")'
}
},
stats: {
colors: true,
modules: false,
},
};


Expand Down