diff options
author | Vitaly Takmazov | 2018-03-01 23:24:32 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-03-01 23:24:32 +0300 |
commit | 377100d02d686819ca1ad666eeab74728c6c5e1a (patch) | |
tree | 6205a038b2218750ad8f0e90f8684a49d1a6411f /juick-www/webpack.config.js | |
parent | 7ec3d37c22bff4ced54fc4f1b6a7f48d9f1c0d43 (diff) |
update npm dependencies
Diffstat (limited to 'juick-www/webpack.config.js')
-rw-r--r-- | juick-www/webpack.config.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/juick-www/webpack.config.js b/juick-www/webpack.config.js index 018cc812..c23524b0 100644 --- a/juick-www/webpack.config.js +++ b/juick-www/webpack.config.js @@ -22,7 +22,7 @@ module.exports = { filename: "[name].[hash].js" }, module: { - loaders: [ + rules: [ { test: /\.jsx?$/, loader: 'eslint-loader', enforce: 'pre', exclude: /node_modules/, options: { failOnWarning: false, failOnError: true }}, { test: /\.js$/, loader: 'babel-loader', query: { presets: ['env'] }}, { test: /\.css$/, loader: ExtractTextPlugin.extract({ fallback: "style-loader", use: "css-loader" }) }, @@ -38,4 +38,4 @@ module.exports = { new AssetPipelinePlugin() ], -}
\ No newline at end of file +} |