mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2024-12-29 09:22:22 -05:00
Gulp: Fix docs task.
Omitted return means streaming wasn't working.
This commit is contained in:
parent
7936ca6677
commit
7e20770126
1 changed files with 1 additions and 1 deletions
|
@ -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/'));
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue