mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-04 04:45:11 +00:00
update webpack.dev.config for v2
This commit is contained in:
parent
6bfce16f2e
commit
dd0bb16e58
3 changed files with 24 additions and 21 deletions
|
@ -42,7 +42,7 @@
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"babel": "^6.5.2",
|
"babel": "^6.5.2",
|
||||||
"babel-core": "^6.18.2",
|
"babel-core": "^6.18.2",
|
||||||
"babel-loader": "^6.2.8",
|
"babel-loader": "^6.4.1",
|
||||||
"babel-plugin-react-require": "^3.0.0",
|
"babel-plugin-react-require": "^3.0.0",
|
||||||
"babel-polyfill": "^6.20.0",
|
"babel-polyfill": "^6.20.0",
|
||||||
"babel-preset-es2015": "^6.18.0",
|
"babel-preset-es2015": "^6.18.0",
|
||||||
|
@ -59,7 +59,7 @@
|
||||||
"lint-staged": "^3.6.0",
|
"lint-staged": "^3.6.0",
|
||||||
"node-sass": "^3.13.0",
|
"node-sass": "^3.13.0",
|
||||||
"prettier": "^1.4.2",
|
"prettier": "^1.4.2",
|
||||||
"webpack": "^1.13.3",
|
"webpack": "^2.6.1",
|
||||||
"webpack-dev-server": "^2.4.4",
|
"webpack-dev-server": "^2.4.4",
|
||||||
"webpack-notifier": "^1.5.0",
|
"webpack-notifier": "^1.5.0",
|
||||||
"webpack-target-electron-renderer": "^0.4.0"
|
"webpack-target-electron-renderer": "^0.4.0"
|
||||||
|
|
|
@ -50,4 +50,4 @@ module.exports = {
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
target: 'electron-main',
|
target: 'electron-main',
|
||||||
};
|
};
|
||||||
|
|
|
@ -17,43 +17,46 @@ module.exports = {
|
||||||
filename: "bundle.js",
|
filename: "bundle.js",
|
||||||
pathinfo: true
|
pathinfo: true
|
||||||
},
|
},
|
||||||
debug: true,
|
|
||||||
cache: true,
|
cache: true,
|
||||||
devtool: 'eval',
|
devtool: 'eval',
|
||||||
resolve: {
|
resolve: {
|
||||||
root: appPath,
|
modules: [appPath, "node_modules"],
|
||||||
extensions: ['', '.js', '.jsx', '.css'],
|
extensions: ['.js', '.jsx', '.css']
|
||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
new WebpackNotifierPlugin(),
|
new WebpackNotifierPlugin(),
|
||||||
new webpack.DefinePlugin({
|
new webpack.DefinePlugin({
|
||||||
ENV: JSON.stringify("development"),
|
ENV: JSON.stringify("development"),
|
||||||
}),
|
}),
|
||||||
|
new webpack.LoaderOptionsPlugin({
|
||||||
|
debug: true
|
||||||
|
})
|
||||||
],
|
],
|
||||||
module: {
|
module: {
|
||||||
preLoaders: [
|
rules: [
|
||||||
{
|
{
|
||||||
test: /\.jsx?$/,
|
test: /\.jsx?$/,
|
||||||
|
enforce: "pre",
|
||||||
loaders: ['eslint'],
|
loaders: ['eslint'],
|
||||||
// define an include so we check just the files we need
|
// define an include so we check just the files we need
|
||||||
include: PATHS.app
|
include: PATHS.app
|
||||||
}
|
},
|
||||||
],
|
{
|
||||||
loaders: [
|
test: /\.css$/,
|
||||||
{ test: /\.css$/, loader: "style!css" },
|
use: ["style-loader", "css-loader"]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
test: /\.jsx?$/,
|
test: /\.jsx?$/,
|
||||||
loader: 'babel',
|
exclude: /node_modules/,
|
||||||
query: {
|
use: {
|
||||||
cacheDirectory: true,
|
loader: 'babel-loader',
|
||||||
presets:[ 'es2015', 'react', 'stage-2' ]
|
options: {
|
||||||
|
cacheDirectory: true,
|
||||||
|
presets: [ 'es2015', 'react', 'stage-2' ]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
{
|
|
||||||
test: /mime\.json$/,
|
|
||||||
loader: 'json',
|
|
||||||
},
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
target: 'electron-main',
|
target: 'electron-main',
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue