From 23ebd31b30596db4fad6efef7eb51bc8d2f729c0 Mon Sep 17 00:00:00 2001 From: squidfunk Date: Mon, 31 Oct 2016 17:10:31 +0100 Subject: [PATCH] Added missing return into task load helper --- Gulpfile.babel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gulpfile.babel.js b/Gulpfile.babel.js index fb5224e30..38beb8fce 100755 --- a/Gulpfile.babel.js +++ b/Gulpfile.babel.js @@ -92,7 +92,7 @@ gulp.src = (...glob) => { * Helper function to load a task */ const load = task => { - require(`./${config.lib}/tasks/${task}`)(gulp, config, args) + return require(`./${config.lib}/tasks/${task}`)(gulp, config, args) } /* ----------------------------------------------------------------------------