Recently, I've been having trouble compiling my sass file to css. Even though it was working fine before and I haven't made any changes, now my CSS file is empty.
Below is the task I am trying to accomplish:
gulp.task('sass', function () {
return gulp.src('src/sass/*.sass')
.pipe(sass().on('error', sass.logError))
.pipe(gulp.dest('dist/css'));
});
I have tried reinstalling packages and node js, but unfortunately, that didn't solve the issue.