From 47aa8d6996db9ffc64c0c5c8e4ae4ad1804c5cce Mon Sep 17 00:00:00 2001
From: Mark <mark.hall@work.room3b.eu>
Date: Tue, 4 Feb 2020 22:45:39 +0000
Subject: [PATCH] Code cleanup

---
 gulpfile.js | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gulpfile.js b/gulpfile.js
index 357008d..7a07cb4 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -23,7 +23,7 @@ gulp.task('css:editor', function(cb) {
         concat('tei-editor.css'),
         gulp.dest('editor/static/editor/css')
     ], cb);
-})
+});
 
 gulp.task('css', gulp.parallel('css:theme', 'css:editor'));
 
@@ -35,7 +35,8 @@ gulp.task('js:ui', function(cb) {
         concat('app.js'),
         gulp.dest('editor/static/editor/js')
     ], cb);
-})
+});
+
 gulp.task('js:editor', function(cb) {
     pump([
         gulp.src([
@@ -55,4 +56,4 @@ gulp.task('watch', gulp.series('default', function(cb) {
     gulp.watch('theme/**/*.scss', gulp.series('css:theme'));
     gulp.watch('scripts/**/*.js', gulp.series('js'));
     cb();
-}))
+}));
-- 
GitLab