OverZealous / run-sequence

Run a series of dependent gulp tasks in order
MIT License
961 stars 56 forks source link

It doesn't work #86

Closed miloxeon closed 7 years ago

miloxeon commented 7 years ago

Hello.

Here's the piece of my gulpfile:

gulp.task('default', function () {
    runSequence(
        'css',
        'html'
    );
});

Here's my full gulpfile: gulpfile.txt

miloxeon commented 7 years ago

Maybe I'm missing something? Let me know please!

OverZealous commented 7 years ago

Please read the docs again: your tasks are not correctly set up, so they are returning immediately. You need to configure them to be asynchronous.

miloxeon commented 7 years ago

omg, sorry