Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

Commit

Permalink
fix: modify doc dist function
Browse files Browse the repository at this point in the history
  • Loading branch information
GusBaamonde committed May 30, 2019
1 parent bf4b97b commit 3f093cc
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,8 @@ gulp.task('doc', function() {
//.pipe(gulp.dest(config.folderDev.docs));
});


gulp.task('doc:dist', ['doc_temp'], function() {
return gulp.src('temp/documentation' + '/*.*')
gulp.task('doc:dist', function() {
return gulp.src(config.folderDev.docs + '/**/*.*')
.pipe(gulp.dest(config.folderDist.docs));
});

Expand Down

0 comments on commit 3f093cc

Please sign in to comment.