gulp.task('html',function(){
gulp.src('*.html')
.pipe(connect.reload());
})
gulp.task('watch', function() {
gulp.watch('index.html',['html'])
});
var src = {
html: ['./src/*.html']
},
gulp.task('html', function() {
gulp.src(src.html)
.pipe(connect.reload())
});
gulp.task('watch', function() {
gulp.watch('./src/**/*.html', ['html']);
});