I am trying to concatenate the output of gulp-run with files coming from gulp.src. To do this, I use merge-stream and gulp-concat. I get the following error:
If I remove .exec(), I don't have the error but no file is created (I find this logically according to the documentation). If I use gulp-shell instead everything is fine.
I am trying to concatenate the output of gulp-run with files coming from gulp.src. To do this, I use
merge-stream
andgulp-concat
. I get the following error:If I remove
.exec()
, I don't have the error but no file is created (I find this logically according to the documentation). If I usegulp-shell
instead everything is fine.Here is my task: