Browse Source

Removed returning from docs task, it is invalid when using callback in task.

Szymon Kupś 9 years ago
parent
commit
a8411f98ac
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dev/tasks/docs/tasks.js

+ 1 - 1
dev/tasks/docs/tasks.js

@@ -34,7 +34,7 @@ module.exports = ( config ) => {
 				'!' + path.join( esnextBuildPath, 'ckeditor5', '*', 'lib', '**', '*' )
 			];
 
-			return gulp.src( patterns, { read: false } )
+			gulp.src( patterns, { read: false } )
 				.pipe( jsdoc( jsDocConfig, cb ) );
 		},