From 1267bbcd5ee5a6673f6cdde75b0ec830aac8f05a Mon Sep 17 00:00:00 2001 From: Chaim Lev-Ari Date: Tue, 6 Nov 2018 14:56:26 +0200 Subject: [PATCH] style(webpack): remove comments from config --- webpack/webpack.common.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/webpack/webpack.common.js b/webpack/webpack.common.js index 3424b2024..98e2f78d3 100644 --- a/webpack/webpack.common.js +++ b/webpack/webpack.common.js @@ -7,7 +7,7 @@ const MiniCssExtractPlugin = require('mini-css-extract-plugin'); const CleanWebpackPlugin = require('clean-webpack-plugin'); // const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer'); const npmPackage = require('../package.json'); -const projectRoot = path.resolve( __dirname, '..'); +const projectRoot = path.resolve(__dirname, '..'); module.exports = { entry: { @@ -92,11 +92,9 @@ module.exports = { new ProvidePlugin({ $: 'jquery', jQuery: 'jquery', - 'window.jQuery': 'jquery' + 'window.jQuery': 'jquery', }), new MiniCssExtractPlugin({ - // Options similar to the same options in webpackOptions.output - // both options are optional filename: '[name].css', chunkFilename: '[id].css', sourceMap: true