So far everything worked on gulp perfectly, minus the sass.
My Code:
var sass = require('gulp-ruby-sass');
gulp.task('styles', function(){
gulp.src('./src/scss/**/*.scss')
.pipe(sass())
.pipe(gulp.dest('./src/css/'));
})
gulp.task('default', function() {
gulp.run('styles');
});
The error it returns me is: Arguments to path.join must be string
Does anyone know the problem? Have you been through this?