From 0df7b0417bc3dfbf70f2e47e1baa2b6d130225f7 Mon Sep 17 00:00:00 2001
From: Vytor Calixto <vytorcalixto@gmail.com>
Date: Thu, 29 Sep 2016 11:04:20 -0300
Subject: [PATCH] Add mkdirp to fix creating logs directory

---
 gulpfile.babel.js | 27 ++++++++++++++-------------
 package.json      |  4 +++-
 2 files changed, 17 insertions(+), 14 deletions(-)

diff --git a/gulpfile.babel.js b/gulpfile.babel.js
index 9f3ea07e..5073c55a 100644
--- a/gulpfile.babel.js
+++ b/gulpfile.babel.js
@@ -14,40 +14,41 @@ const Cache = require('gulp-file-cache');
 
 const jsdoc = require('gulp-jsdoc3');
 
+const mkdirp = require('mkdirp');
+
 const cache = new Cache();
 
 function createLogDir() {
     const logDirPath = 'build/logs';
-    fs.access(logDirPath, fs.F_OK, (err) => {
-        if (err) {
-            console.info(`Logs directory not found, creating it.`);
-            fs.mkdir(logDirPath, 0o700, (dirErr) => {
-                console.error(`Failed to create logs directory.\n\tError: ${dirErr}`);
-            });
-        }
+    mkdirp(logDirPath, (err) => {
+        if(err) console.error(err);
     });
 }
 
-/**
-* Compile source files
-*/
-gulp.task('compile', () => {
-    createLogDir();
+gulp.task('lint', () => {
     // run ESLint
     gulp.src('src/**/*.js')
     .pipe(eslint())
     .pipe(eslint.format());
+})
+
+/**
+* Compile source files
+*/
+gulp.task('compile', ['lint'], () => {
 
     // compile source to ES5
     gulp.src('src/**/*.js')
     .pipe(cache.filter())       // cache source files
     .pipe(babel())      // compile only modified files
-    .pipe(cache.cache())        // cache compiled files
+    // .pipe(cache.cache())        // cache compiled files
     .pipe(gulp.dest('build'));  // move compiled files to build directory
 
     // copy configuration file to build directory
     gulp.src('config.json')
     .pipe(gulp.dest('build'));
+
+    createLogDir();
 });
 
 gulp.task('build', ['compile']);
diff --git a/package.json b/package.json
index 87652e4a..2249eef5 100644
--- a/package.json
+++ b/package.json
@@ -50,12 +50,14 @@
     "gulp-cli": "^1.2.2",
     "gulp-eslint": "^3.0.1",
     "gulp-file-cache": "0.0.1",
+    "gulp-function": "^1.3.6",
     "gulp-jsdoc3": "^0.3.0",
     "gulp-mocha": "^3.0.1",
     "gulp-nodemon": "^2.1.0",
     "gulp-plumber": "^1.1.0",
     "gulp-rename": "^1.2.2",
     "gulp-uglify": "^2.0.0",
-    "jsdoc": "^3.4.1"
+    "jsdoc": "^3.4.1",
+    "mkdirp": "^0.5.1"
   }
 }
-- 
GitLab