From 58aa3fc41fa4c8a68c65fb3991bce6d6af03f7fc Mon Sep 17 00:00:00 2001
From: mntmn <lukas@mntmn.com>
Date: Wed, 15 May 2019 21:35:29 +0200
Subject: [PATCH] fix gulpfile to signal completion, clean up a bit

---
 Gulpfile.js | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/Gulpfile.js b/Gulpfile.js
index ee34f4d..f20bf7e 100644
--- a/Gulpfile.js
+++ b/Gulpfile.js
@@ -1,13 +1,13 @@
-var gulp = require('gulp');
-var sass = require('gulp-sass');
-var concat = require('gulp-concat');
+const gulp = require('gulp')
+const sass = require('gulp-sass')
+const concat = require('gulp-concat')
 
-gulp.task('styles', function() {
+gulp.task('styles', function(done) {
   gulp.src('styles/**/*.scss')
     .pipe(sass({
         errLogToConsole: true
     }))
     .pipe(gulp.dest('./public/stylesheets/'))
-    .pipe(concat('style.css'));
-});
-
+    .pipe(concat('style.css'))
+  done()
+})
-- 
GitLab