From 3097f8cdfbcc778c65a0b48dcfa4448767ab3713 Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Wed, 24 May 2017 12:40:36 +0200 Subject: Add trailing comas --- webpack.config.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index 4621e94dd..04822d79d 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -14,10 +14,10 @@ module.exports = { filename: '[name].js', libraryTarget: 'umd', library: 'ZeroEx', - umdNamedDefine: true + umdNamedDefine: true, }, resolve: { - extensions: ['.ts', '.js'] + extensions: ['.ts', '.js'], }, devtool: 'source-map', plugins: [ @@ -25,7 +25,7 @@ module.exports = { minimize: true, sourceMap: true, include: /\.min\.js$/, - }) + }), ], module: { loaders: [{ @@ -34,7 +34,7 @@ module.exports = { exclude: /node_modules/, query: { declaration: false, - } - }] - } -} + }, + }], + }, +}; -- cgit v1.2.3