diff options
author | Mike Greiling <mike@pixelcog.com> | 2017-02-02 16:30:59 -0600 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2017-02-02 16:41:46 -0600 |
commit | 152b292d0b566547875a44470c76e9a43cb28a36 (patch) | |
tree | 3782af2edecad5166357453f05fefbb72df6f0a3 /config | |
parent | ae1d69c29a69412847b6aaa80a04b24932f751d1 (diff) | |
download | gitlab-ce-152b292d0b566547875a44470c76e9a43cb28a36.tar.gz |
consistently use single quotes
Diffstat (limited to 'config')
-rw-r--r-- | config/webpack.config.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/webpack.config.js b/config/webpack.config.js index db4ce84f376..7cd92af7d93 100644 --- a/config/webpack.config.js +++ b/config/webpack.config.js @@ -4,7 +4,7 @@ var fs = require('fs'); var path = require('path'); var webpack = require('webpack'); var StatsPlugin = require('stats-webpack-plugin'); -var CompressionPlugin = require("compression-webpack-plugin"); +var CompressionPlugin = require('compression-webpack-plugin'); var ROOT_PATH = path.resolve(__dirname, '..'); var IS_PRODUCTION = process.env.NODE_ENV === 'production'; @@ -53,10 +53,10 @@ var config = { exclude: /node_modules/, loader: 'babel-loader', query: { - // "use strict" was broken in sprockets-es6 due to sprockets concatination method. + // 'use strict' was broken in sprockets-es6 due to sprockets concatination method. // many es5 strict errors which were never caught ended up in our es6 assets as a result. // this hack is necessary until they can be fixed. - blacklist: ["useStrict"] + blacklist: ['useStrict'] } }, { |