Olá,
Tenho um projeto em laravel 4.2 rodando em um servidor IIS. Gostaria de rodar o script abaixo para evitar ficar dando reload na pagina. Mas não esta funcionando. Alguem saberia me dizer o porque ?
O endereço do servidor é localhost:8084
gulp.task('server', function(){
gulp.task('server', function() {
browserSync.init({
server: {
baseDir: 'projeto'
}
});
});
gulp.watch('projeto/public/js/*.js').on('change', function(event){
gulp.src(event.path)
.pipe(jshint())
.pipe(jshint.reporter(jshintStylish));
});
gulp.watch('projeto/public/css/*.css').on('change', function(event){
gulp.src(event.path)
.pipe(cssLint())
.pipe(cssLint.reporter());
});
gulp.watch('projeto/public/less/**/*.less').on('change', function(event) {
var stream = gulp.src(event.path)
.pipe(less().on('error', function(erro) {
console.log('LESS, erro compilação: ' + erro.filename);
console.log(erro.message);
}))
.pipe(gulp.dest('projeto/public/css'));
});
gulp.watch('projeto/**/*').on('change', browserSync.reload);
});