diff --git a/package.json b/package.json index 91c727bc..7130b47e 100644 --- a/package.json +++ b/package.json @@ -119,7 +119,6 @@ "husky": "^0.11.6", "redux-logger": "^2.6.1", "spectron": "^3.4.0", - "v8-lazy-parse-webpack-plugin": "^0.3.0", "webpack": "^2.2.0-rc.3", "xo": "^0.17.1" } diff --git a/webpack.config.js b/webpack.config.js index 9cec8104..4745b4ee 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -2,7 +2,6 @@ const path = require('path'); const webpack = require('webpack'); const Copy = require('copy-webpack-plugin'); -const V8LazyParseWebpackPlugin = require('v8-lazy-parse-webpack-plugin'); const nodeEnv = process.env.NODE_ENV || 'development'; const isProd = nodeEnv === 'production'; @@ -38,8 +37,7 @@ module.exports = { from: './assets', to: './assets' } - ]), - new V8LazyParseWebpackPlugin() + ]) ], target: 'electron' };