Answer the question
In order to leave comments, you need to log in
How to run one task inside another in Gulp 4?
Good day to all! There is a SASS task:
gulp.task('sass', function (done) {
gulp.src("scss/style.scss")
.pipe(sass({outputStyle: 'compressed'}))
.pipe(rename({suffix: '.min'}))
.pipe(gulp.dest("css/"))
done();
});
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