Skip to content

Commit

Permalink
Consistency in example (#214)
Browse files Browse the repository at this point in the history
Maybe I miss something with `gulp.src` but the html task won't do anything in the current example, no?

Maybe it's interesting to add this patch to not disrupt people with a not finished example.
  • Loading branch information
kud authored and justinmchase committed Oct 30, 2017
1 parent 366e4f6 commit 0d218bf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -43,6 +43,7 @@ gulp.task('connect', function() {

gulp.task('html', function () {
gulp.src('./app/*.html')
.pipe(gulp.dest('./app'))
.pipe(connect.reload());
});

Expand Down Expand Up @@ -95,6 +96,7 @@ gulp.task('connectDist', function () {

gulp.task('html', function () {
gulp.src('./app/*.html')
.pipe(gulp.dest('./app'))
.pipe(connect.reload());
});

Expand Down

0 comments on commit 0d218bf

Please sign in to comment.