Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Gulp v4 watch task

Tags:

npm

gulp

postcss


I just upgraded to Gulp v4 and was wondering why my gulpfile isn't working anymore.
I tried the new code of the new documentation but it didn't worked out as planned because I'm using "pure" postcss.
So I googled for my issue and found this question: Gulp error: watch task has to be a function
However, this also wasnt a solution for my problem, although I get the same error message Error: watching src/styles/**/*.scss: watch task has to be a function

I currently have this code

var gulp = require('gulp');
var sass = require('gulp-sass');
var postcss = require('gulp-postcss');
var autoprefixer = require('autoprefixer');
var cssnano = require('cssnano');

gulp.task('default', function () {
    gulp.watch('src/styles/**/*.scss', ['styles']);
});

gulp.task('styles', function () {
    var processors = [
        autoprefixer({
            browsers: ['last 3 versions', 'ie > 9']
        }),
        cssnano()
    ];
    gulp.src('src/styles/main.scss')
        .pipe(sass().on('error', sass.logError))
        .pipe(postcss(processors))
        .pipe(gulp.dest('dist/files/styles/'));
});

and when I change
gulp.watch('src/styles/**/*.scss', ['styles']);
to
gulp.watch('src/styles/**/*.scss', gulp.series('styles'));
it just gives me a Starting 'default'... and after changing a file Starting 'styles'...
with Gulp 3.9 it was

Starting 'default'...
Finished 'default' after 174 ms

and after changing a file

Starting 'styles'...
Finished 'styles' after 561 μs

I've now tried many different things but I just dont get it to work like it did before. I'm really thinking of switching over to webpack like the cool kids now. But Gulp always worked fine.

Can someone explain to me what I'm doing wrong?

like image 460
obeN Avatar asked Aug 30 '18 10:08

obeN


People also ask

What is the use of watch method in Gulp?

The Watch method is used to monitor your source files. When any changes to the source file is made, the watch will run an appropriate task. You can use the ‘default’ task to watch for changes to HTML, CSS, and JavaScript files. In the previous chapter you have learnt how to gulp combining tasks using default task.

How to use gulp to watch for changes to HTML and CSS?

You can use the ‘default’ task to watch for changes to HTML, CSS, and JavaScript files. In the previous chapter you have learnt how to gulp combining tasks using default task. We used gulp-minify-css, gulp-autoprefixer and gulp-concatplugins, and created styles task to minify CSS files.

How do I watch for changes in a specific directory using gulp?

and then you can watch by just running gulp in CLI (which causes it to run gulp default, which in turn runs gulp watch, which watches for any changes in any scss files in the given directory and runs sass task for every change) Thanks for contributing an answer to Stack Overflow! Please be sure to answer the question.

Is gulp V4 good for sequence tasks?

Now that Gulp v4 has been out for nearly over a year (released at the end of 2017) it offers some great ways to sequence tasks using their library called bach. Note: I would recommend moving to Gulp v4 since v3 had some security vulnerabilities [I'm not sure if those have been patched now].


2 Answers

Just in case anyone else stumbles on this (like I did), trying to solve Gulp not working after upgrading, I found there were really only two things that mattered for me (after trying hundreds) -

  1. "\\" for path separators no longer works on Windows. "/" is the only way to go. This was the longest pain point for me. Probably better to do it this way anyway, because it makes it cross platform - but I was on a Windows only project at the time.
  2. Make sure to emit a callback if you are calling tasks series or return a promise. It was not obvious to me exactly when that was required, and leaving it out was causing me major pain. It's something like this:
gulp.task('js', (done) => {
    gulp.src(src)
        .pipe(task())
        .pipe(task(etc))
        //etc
        .pipe(gulp.dest(dst));
    done();
});

I'm specifically using the old style in my example above to demonstrate that it really doesn't matter how you do it. Gulp is very forgiving, but it is a stickler about the callbacks and the paths. I think the paths thing is actually related to chokidar or some sub module that gulp is using.

Hope this saves someone some pain.

like image 145
dgo Avatar answered Oct 19 '22 18:10

dgo


I struggled with this one myself..

took me hours of headache only to find out that basically everything changes with v4.0

I've run my code like this and it works perfectly...

//Do everything once!
  gulp.task('default', function(){
    gulp.watch('src/styles/*.css', gulp.series('css')),
    gulp.watch('src/html/*.html', gulp.series('copyHTML')),
    gulp.watch('src/js/*.js', gulp.series('scripts')),
    gulp.watch('src/images/*', gulp.series('imageMIN'));
  return
});
like image 33
Michiel J Otto Avatar answered Oct 19 '22 19:10

Michiel J Otto