From b0d029e07f874b7a06b79ff241f3f2daf351bde7 Mon Sep 17 00:00:00 2001
From: Manuel Thalmann <m@nuth.ch>
Date: Sat, 10 Dec 2022 00:29:14 +0100
Subject: [PATCH] Fix style issues

---
 gulpfile.ts | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/gulpfile.ts b/gulpfile.ts
index 2beda26..1392154 100644
--- a/gulpfile.ts
+++ b/gulpfile.ts
@@ -140,25 +140,25 @@ export let Watch: TaskFunction = async (): Promise<void> =>
                             server: context.StaticPath(),
                             online: false
                         });
-                    
+
                         watch(
                             context.SourcePath(context.JSDirName),
                             series(
                                 JavaScript,
                                 BrowserSync(syncer, "*.js")));
-                    
+
                         watch(
                             context.SourcePath(context.StyleDirName, "**", "*.css"),
                             series(
                                 Styles,
                                 BrowserSync(syncer, "*.css")));
-                    
+
                         watch(
                             context.SourcePath(context.AssetDirName),
                             series(
                                 Assets,
                                 BrowserSync(syncer, join(context.AssetDirName, "**", "*"))));
-                    
+
                         watch(
                             context.SourcePath("**", "*.html"),
                             series(
@@ -167,4 +167,4 @@ export let Watch: TaskFunction = async (): Promise<void> =>
                     }
                 });
         });
-}
+};