mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-16 21:58:39 -09:00
Remove V8LazyParseWebpackPlugin – closes #1418
Check webpack/webpack#3980 for more info
This commit is contained in:
parent
5fa9006505
commit
26167ab38a
2 changed files with 1 additions and 4 deletions
|
|
@ -119,7 +119,6 @@
|
||||||
"husky": "^0.11.6",
|
"husky": "^0.11.6",
|
||||||
"redux-logger": "^2.6.1",
|
"redux-logger": "^2.6.1",
|
||||||
"spectron": "^3.4.0",
|
"spectron": "^3.4.0",
|
||||||
"v8-lazy-parse-webpack-plugin": "^0.3.0",
|
|
||||||
"webpack": "^2.2.0-rc.3",
|
"webpack": "^2.2.0-rc.3",
|
||||||
"xo": "^0.17.1"
|
"xo": "^0.17.1"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@ const path = require('path');
|
||||||
|
|
||||||
const webpack = require('webpack');
|
const webpack = require('webpack');
|
||||||
const Copy = require('copy-webpack-plugin');
|
const Copy = require('copy-webpack-plugin');
|
||||||
const V8LazyParseWebpackPlugin = require('v8-lazy-parse-webpack-plugin');
|
|
||||||
|
|
||||||
const nodeEnv = process.env.NODE_ENV || 'development';
|
const nodeEnv = process.env.NODE_ENV || 'development';
|
||||||
const isProd = nodeEnv === 'production';
|
const isProd = nodeEnv === 'production';
|
||||||
|
|
@ -38,8 +37,7 @@ module.exports = {
|
||||||
from: './assets',
|
from: './assets',
|
||||||
to: './assets'
|
to: './assets'
|
||||||
}
|
}
|
||||||
]),
|
])
|
||||||
new V8LazyParseWebpackPlugin()
|
|
||||||
],
|
],
|
||||||
target: 'electron'
|
target: 'electron'
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue