Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Eastwood <contact@ericeastwood.com>2018-02-27 23:06:00 +0300
committerEric Eastwood <contact@ericeastwood.com>2018-02-27 23:06:00 +0300
commit16b6c0e2b178ce3abca2f9fb381d2981f6b37174 (patch)
treef50077254913a042a3a40111a161560f2bd2dcc8
parentd4867c518f2d72125c619c191fa9577dabb1ae9a (diff)
Remove trailing comma in webpack config to support Node@<8
See https://gitlab.com/gitlab-org/gitlab-ce/issues/43669
-rw-r--r--config/webpack.config.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/webpack.config.js b/config/webpack.config.js
index cdeca3ecfd5..137bf729aab 100644
--- a/config/webpack.config.js
+++ b/config/webpack.config.js
@@ -362,7 +362,7 @@ if (IS_DEV_SERVER) {
callback();
})
},
- },
+ }
);
if (DEV_SERVER_LIVERELOAD) {
config.plugins.push(new webpack.HotModuleReplacementPlugin());