Answer the question
In order to leave comments, you need to log in
Why is gulp dest ignoring my path?
Hello!
This code does not work
gulp.task('sass', function() {
return sass(paths.sass, {style: 'expanded'}).pipe(gulp.dest('htdocs/css/'))
});
Instead of the htdocs/css directory, the style.css file is written to the system temporary folder c:\TEMP\gulp-ruby-sass\a7a3e12dc657c02aa539155a2df989d0.css/style.css
What's the glitch?
Answer the question
In order to leave comments, you need to log in
gulp.task('sass', function () {
gulp.src(paths.sass)
.pipe(sass().on('error', sass.logError))
.pipe(gulp.dest('htdocs/css'));
});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question