aboutsummaryrefslogtreecommitdiff
path: root/juick-www/webpack.config.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2018-02-15 11:10:28 +0300
committerGravatar Vitaly Takmazov2018-02-15 11:10:28 +0300
commit3f2846a1e151793a6908620c094984894e899a3b (patch)
tree875e9aa5b985ed52c169bf4df2a21a6c4a8827a3 /juick-www/webpack.config.js
parent88a229093db4ae59f9a615a2b5952e019d320ecb (diff)
www: update js dependencies, babel-preset-env
Diffstat (limited to 'juick-www/webpack.config.js')
-rw-r--r--juick-www/webpack.config.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/juick-www/webpack.config.js b/juick-www/webpack.config.js
index 1885efee..018cc812 100644
--- a/juick-www/webpack.config.js
+++ b/juick-www/webpack.config.js
@@ -24,7 +24,7 @@ module.exports = {
module: {
loaders: [
{ test: /\.jsx?$/, loader: 'eslint-loader', enforce: 'pre', exclude: /node_modules/, options: { failOnWarning: false, failOnError: true }},
- { test: /\.js$/, loader: 'babel-loader', query: { presets: ['es2015'] }},
+ { test: /\.js$/, loader: 'babel-loader', query: { presets: ['env'] }},
{ test: /\.css$/, loader: ExtractTextPlugin.extract({ fallback: "style-loader", use: "css-loader" }) },
{ test: /\.png$/, loader: "url-loader?limit=10000000000" },
{ test: /\.svg$/, loader: "url-loader?limit=10000000000" }