Answer the question
In order to leave comments, you need to log in
What is wrong with gulp task?
I don't understand what's wrong? Why is the third way not processed?'assets/styles/**/*.scss'
gulp.task('sass', function(){
return gulp.src([
'!assets/styles/**/_*.scss',
'assets/styles/all.scss',
'assets/styles/**/*.scss'
])
.pipe(sass().on('error', sass.logError))
.pipe(sourcemaps.init())
.pipe(sourcemaps.write('.'))
.pipe(gulp.dest(path.join(content_path, 'css/')));
});
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question