From d520ee2831affe3a1cf5d71d7ff06c6289be523f Mon Sep 17 00:00:00 2001
From: blavenie <benoit.lavenier@e-is.pro>
Date: Thu, 30 Nov 2017 10:33:41 +0100
Subject: [PATCH] reformat code

---
 gulpfile.js | 20 +++++++++-----------
 1 file changed, 9 insertions(+), 11 deletions(-)

diff --git a/gulpfile.js b/gulpfile.js
index 8617ae001..3f1749228 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -51,15 +51,15 @@ var paths = {
   license_md: ['./www/license/*.md']
 };
 
-gulp.task('serve:before', ["sass",
-  "templatecache",
-  "ng_annotate",
-  "ng_translate",
-  "templatecache_plugin",
-  "ng_annotate_plugin",
-  "ng_translate_plugin",
-  "css_plugin",
-  "license_md"]);
+gulp.task('serve:before', ['sass',
+  'templatecache',
+  'ng_annotate',
+  'ng_translate',
+  'templatecache_plugin',
+  'ng_annotate_plugin',
+  'ng_translate_plugin',
+  'css_plugin',
+  'license_md']);
 
 gulp.task('default', ['config', 'serve:before']);
 
@@ -187,7 +187,6 @@ gulp.task('templatecache', function (done) {
       module:"cesium.templates",
       root: "templates/"
      }))
-    //.pipe(gulp.dest('www/js'))
     .pipe(gulp.dest('./www/dist/dist_js/app'))
     .on('end', done);
 });
@@ -529,7 +528,6 @@ gulp.task('optimize-files:web', ['debug-files:web'], function(done) {
     .pipe(revReplace())         // Substitute in new filenames
     .pipe(gulp.dest(tmpPath))
     .on('end', done);
-
 });
 
 gulp.task('clean-unused-files:web', ['optimize-files:web'], function(done) {
-- 
GitLab