1
0
Fork 0
mirror of https://github.com/futurepress/epub.js.git synced 2025-10-03 14:59:18 +02:00

Update gulp documentation

This commit is contained in:
Fred Chasen 2017-11-06 14:02:35 -08:00
parent 0ef714a517
commit 7ff4c8e37c
3 changed files with 389 additions and 288 deletions

View file

@ -127,13 +127,13 @@ gulp.task("serve", function(callback) {
gulp.task('docs:md', function () {
return gulp.src('./src/epub.js')
.pipe(buildDocs({ format: 'md' }))
.pipe(buildDocs('md'))
.pipe(gulp.dest('documentation/md'));
});
gulp.task('docs:html', function () {
return gulp.src('./src/epub.js')
.pipe(buildDocs({ format: 'html' }))
.pipe(buildDocs('html'))
.pipe(gulp.dest('documentation/html'));
});