Closed nodox closed 7 years ago
First, what's the error? You never said what's not working.
Second, your gulp.watch
line makes no sense. You are running the sequence immediately, and only once. For example, if you had said gulp.watch(/* ... */, console.log('hello'))
, you'd see hello
printed once, and then nothing else.
I doubt this is an issue with run-sequence
. All this library does is call Gulp tasks one after the other.
Once I introduced
run-sequence
my build started to break with eslint. Not sure who this problem belongs too. Below is my code. I'm trying to run my tests and lint my code in series.