From c4dc24e241a0a404b25399cd4bab2e6fc641e83f Mon Sep 17 00:00:00 2001 From: Chris Barber Date: Fri, 14 Dec 2018 13:57:36 -0600 Subject: [PATCH] fix(gulp): Fixed async build function. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 11a424e..86c6d97 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -42,7 +42,7 @@ exports.lint = parallel(lintSrc, lintTest); /* * build tasks */ -async function build() { +function build() { return gulp .src('src/**/*.js') .pipe($.plumber())