Remove V8LazyParseWebpackPlugin – closes #1418

Check webpack/webpack#3980 for more info
This commit is contained in:
Matheus Fernandes 2017-01-20 19:31:37 -02:00
parent 5fa9006505
commit 26167ab38a
No known key found for this signature in database
GPG key ID: DD07CA4EA7B65C4F
2 changed files with 1 additions and 4 deletions

View file

@ -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"
}

View file

@ -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'
};