gulp.task('buildHTML', function() {
gulp.src('source/index.html')
.pipe(gulp.dest('public/'))
.pipe(reload({stream: true}))
})
gulp.task('watch', function() {
gulp.watch('source/scss/*.scss', ['compileSass'])
gulp.watch('source/index.html', ['buildHTML'])
})
gulp.task('server', function() {
browserSync.init({
server: {
baseDir: "public/"
}
})
})