Olá pessoal, estou tentando usar o browser sync mas ele está apresentando o seguinte erro no terminal:
Linting /Users/joselialcosta/workspace/palmela-site/html/src/css/main.css
/Users/joselialcosta/workspace/palmela-site/html/gulpfile.js:66
.pipe(csslint.reporter());
^
TypeError: csslint.reporter is not a function
at EventEmitter.<anonymous> (/Users/joselialcosta/workspace/palmela-site/html/gulpfile.js:66:27)
at emitOne (events.js:96:13)
at EventEmitter.emit (events.js:188:7)
at Gaze.<anonymous> (/Users/joselialcosta/workspace/palmela-site/html/node_modules/glob-watcher/index.js:17:11)
at emitTwo (events.js:106:13)
at Gaze.emit (events.js:191:7)
at Gaze.emit (/Users/joselialcosta/workspace/palmela-site/html/node_modules/gaze/lib/gaze.js:129:32)
at /Users/joselialcosta/workspace/palmela-site/html/node_modules/gaze/lib/gaze.js:415:16
at StatWatcher._pollers.(anonymous function) (/Users/joselialcosta/workspace/palmela-site/html/node_modules/gaze/lib/gaze.js:326:7)
at emitTwo (events.js:111:20)
at StatWatcher.emit (events.js:191:7)
at StatWatcher._handle.onchange (fs.js:1481:10)
A parte to meu gulpfile que contém o CSSLint é a seguinte:
gulp.watch('src/css/**/*.css').on('change', function(event) {
console.log("Linting " + event.path);
gulp.src(event.path)
.pipe(csslint())
.pipe(csslint.reporter());
});
Estou utilizando a versao 1.0.0
.
Eu consigo subir o gulp numa boa, porém ao ter algum erro no .less
ele derruba o server
e aparece este erro.