From 7e20770126f7069d1827e7d0c27bd3b9575da1f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Sat, 9 Jul 2016 16:11:18 +0200 Subject: [PATCH] Gulp: Fix docs task. Omitted return means streaming wasn't working. --- gulp/tasks/docs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulp/tasks/docs.js b/gulp/tasks/docs.js index 13249a5a..0854ac14 100644 --- a/gulp/tasks/docs.js +++ b/gulp/tasks/docs.js @@ -22,7 +22,7 @@ var docOptions = { }; gulp.task('docs', ['docs:local', 'build:full'], function() { - gulp.src('dist/paper-full.js') + return gulp.src('dist/paper-full.js') .pipe(rename({ basename: 'paper' })) .pipe(gulp.dest('dist/docs/assets/js/')); });