Skip to content

Commit 7e20770

Browse files
committed
Gulp: Fix docs task.
Omitted return means streaming wasn't working.
1 parent 7936ca6 commit 7e20770

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulp/tasks/docs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ var docOptions = {
2222
};
2323

2424
gulp.task('docs', ['docs:local', 'build:full'], function() {
25-
gulp.src('dist/paper-full.js')
25+
return gulp.src('dist/paper-full.js')
2626
.pipe(rename({ basename: 'paper' }))
2727
.pipe(gulp.dest('dist/docs/assets/js/'));
2828
});

0 commit comments

Comments
 (0)