I'm using "gulp-sass": 2.1.1 to compile my project. I'm having some issues identifying where the missing files are from. Whats the best way to logout this error information. Is there a flag or something I can set whilst compiling?
Jimi
Make sure you are using .on('error', ...)
in your task:
gulp.task('sass', function () {
return gulp.src('./sass/**/*.scss')
.pipe(sass().on('error', sass.logError))
.pipe(gulp.dest('./css'));
});