Answer the question
In order to leave comments, you need to log in
Node SASS vs Dart SASS. Which is more productive under what conditions?
It became interesting which SASS ->CSS compiler is more productive and which one is more suitable for me in the project.
At the moment I'm using the default gulp-sass
gulp.task('styles', function() {
return gulp.src('app/sass/main.sass')
.pipe(sass().on('error', sass.logError))
.pipe(concat('style.css'))
.pipe(gulp.dest('app/css'))
.pipe(browserSync.reload({ stream: true }))
});
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