From 1981c43c8a92848678f44256a11fa8d9ba388930 Mon Sep 17 00:00:00 2001
From: Paul Slaughter <pslaughter@gitlab.com>
Date: Thu, 28 Jan 2021 23:04:54 -0600
Subject: [PATCH] Fix missing semicolon

---
 config/helpers/incremental_webpack_compiler.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/helpers/incremental_webpack_compiler.js b/config/helpers/incremental_webpack_compiler.js
index bdf77f750b728..889e627d2c50c 100644
--- a/config/helpers/incremental_webpack_compiler.js
+++ b/config/helpers/incremental_webpack_compiler.js
@@ -9,7 +9,7 @@ const TIMEOUT = 5000;
 
 class NoopCompiler {
   constructor() {
-    this.enabled = false
+    this.enabled = false;
   }
 
   filterEntryPoints(entryPoints) {
-- 
GitLab