99

Here is a composed task I don't know how to replace it with task dependencies.

...
gulp.task('watch', function () {
 var server = function(){
  gulp.run('jasmine');
  gulp.run('embed');
 };
 var client = function(){
  gulp.run('scripts');
  gulp.run('styles');
  gulp.run('copy');
  gulp.run('lint');
 };
 gulp.watch('app/*.js', server);
 gulp.watch('spec/nodejs/*.js', server);
 gulp.watch('app/backend/*.js', server);
 gulp.watch('src/admin/*.js', client);
 gulp.watch('src/admin/*.css', client);
 gulp.watch('src/geojson-index.json', function(){
  gulp.run('copygeojson');
 });
});

The corresponding changelog https://github.com/gulpjs/gulp/blob/master/CHANGELOG.md#35 [deprecate gulp.run]

toutpt
  • 5,145
  • 5
  • 38
  • 45

10 Answers10

85

Or you can do like this:

gulp.start('task1', 'task2');
Pavel Evstigneev
  • 4,918
  • 31
  • 21
  • 3
    Is this safe to use? I do not see it mentioned [in the API docs (link)](https://github.com/gulpjs/gulp/blob/master/docs/API.md). – Felix Rabe Jun 12 '14 at 18:04
  • 4
    `.start` is an Orchestrator method. Since Gulp inherits from that, it should work. I'm triggering a gulp task from a non-gulp function (watchify) and this appears to be working. – joemaller Jun 22 '14 at 22:54
  • 24
    `gulp.start` will removed in the next release: https://github.com/gulpjs/gulp/issues/505#issuecomment-45379280 – yckart Sep 17 '14 at 11:50
  • 13
    @yckart so what do we use to execute a task? – chovy Oct 08 '14 at 23:49
  • 2
    No, this is not safe to use! It's not in the api for a reason, it's only available in the Gulp namespace as a side effect of inheritance. You just make normal JS functions. Then call them from on function wrapped in a task. It's very simiple. https://github.com/gulpjs/gulp/issues/458#issuecomment-62057370 – dman Nov 08 '14 at 23:18
  • 6
    Revisting this, most uses of `gulp-start` can be replaced with `run-sequence` https://www.npmjs.com/package/run-sequence – joemaller Apr 30 '15 at 13:50
  • @chovy That's simple. You just put it in another task. I am doing this. XD – shrekuu Nov 18 '15 at 11:33
  • 2
    I hope they leave this in. It doesn't feel like a hack is simple and elegant to use. – landed Jun 29 '16 at 13:58
82
gulp.task('watch', function () {
  var server = ['jasmine', 'embed'];
  var client = ['scripts', 'styles', 'copy', 'lint'];
  gulp.watch('app/*.js', server);
  gulp.watch('spec/nodejs/*.js', server);
  gulp.watch('app/backend/*.js', server);
  gulp.watch('src/admin/*.js', client);
  gulp.watch('src/admin/*.css', client);
  gulp.watch('src/geojson-index.json', ['copygeojson']);
});

You no longer need to pass a function (though you still can) to run tasks. You can give watch an array of task names and it will do this for you.

Contra
  • 1,691
  • 15
  • 14
  • 13
    What if I want to run some task before I begin watching? E.g. I want to watch `scripts`, but it also makes sense to force run this task right away (without waiting until some script file changes). – Monsignor Oct 23 '14 at 12:28
  • 4
    And is there any way to pass arguments to those tasks? – Dr. Ernie Nov 01 '14 at 13:28
  • @Monsingor you can have an event listener on the watcher, like so: ```gulp.watch('app/*.js', ['task']).on('change', function(e) { console.log(e); });``` Take a look at [the docs](https://github.com/gulpjs/gulp/blob/master/docs/API.md#tasks). – rachel Feb 25 '15 at 22:25
  • 7
    @rachel irrelevant to the question Monsingor asked. – Mark Amery Apr 22 '15 at 10:33
  • 6
    @Monsingor To achieve that, you can define a new task that executes a list of tasks. For example, I usually define the following default task `gulp.task('default', ['build', 'watch']);`, which first builds and then starts watching. – Bastiaan van den Berg Jun 12 '15 at 08:21
  • 1
    @BastiaanvandenBerg I thought gulp tasks were designed to run in parallel? So even though you are listing build first, it doesn't have to finish before the watch task fires. I am getting from the OP that they want to ensure build has finished before watch begins. – Sean Ryan Jun 25 '15 at 22:30
  • @Monsingor: See my answer below for a task that runs before watching begins, then is _not_ watched. – bergie3000 Jul 05 '15 at 20:39
  • Then why do I get this error with gulp v4.0.0? Error: watching **/*.ts,!node_modules/**/*: watch task has to be a function (optionally generated by using gulp.parallel or gulp.series) **Task has to be a function** – Tyguy7 Apr 25 '18 at 21:55
25

source: https://github.com/gulpjs/gulp/issues/755

gulp.start() was never meant to be a public api nor used. And as stated above in comments, the task management is being replaced in the next release....so gulp.start() will be breaking.

The true intention of the gulp design is to make regular Javascript functions, and only make the task for calling them.

Example:

function getJsFiles() {
    var sourcePaths = [
        './app/scripts/**/*.js',
        '!./app/scripts/**/*.spec.js',
        '!./app/scripts/app.js'
    ];

    var sources = gulp.src(sourcePaths, { read: false }).pipe(angularFilesort());

    return gulp.src('./app/index.html')
        .pipe(injector(sources, { ignorePath: 'app', addRootSlash: false }))
        .pipe(gulp.dest('./app'));
}  

gulp.task('js', function () {
    jsStream = getJsFiles();
});
dman
  • 10,406
  • 18
  • 102
  • 201
12

Forgive me for resurrecting an old question. The accepted answer does not address the issue of running tasks before setting the watches. The next answer uses gulp.start which is going away. The third answer points out that regular functions should be used but the example seems strange. I did some searching but did not find a simple example.

Here is my solution. The idea is to define regular js functions then register them as tasks. The functions can then be called directly if needed or from within a watch.

var 
  gulp     = require('gulp'),
  concat   = require('gulp-concat'),
  markdown = require('gulp-showdown')
;
var scriptFiles   = [ 'ang/app.js' ];
var markdownFiles = [ 'content/articles/*.md'];

var watchTask = function() 
{
  buildTask();

  gulp.watch(scriptFiles,  ['scripts' ]);
  gulp.watch(markdownFiles,['markdown']);
};
gulp.task('watch',watchTask);

var buildTask = function()
{
  scriptsTask();
  markdownTask();
};
gulp.task('build',buildTask);

var markdownTask = function() 
{
  gulp.src(markdownFiles)
    .pipe(markdown())
    .pipe(gulp.dest('web/articles'));
};
gulp.task('markdown',markdownTask);

var scriptsTask = function() 
{
  gulp.src(scriptFiles)
    .pipe(concat('app.js'))
    .pipe(gulp.dest('web/js'));

  gulp.src(
    [
      'bower_components/angular/angular.min.js',
      'bower_components/angular-route/angular-route.min.js'
    ])
    .pipe(concat('vendor.js'))
    .pipe(gulp.dest('web/js'));

  gulp.src(
    [
      'bower_components/angular/angular.min.js.map',
      'bower_components/angular-route/angular-route.min.js.map'
    ])
    .pipe(gulp.dest('web/js'));
};
gulp.task('scripts', scriptsTask);

I am new to gulp. Please let me know if I have overlooked something obvious.

Cerad
  • 48,157
  • 8
  • 90
  • 92
  • This also makes it easier to create "build" tasks and "rebuild" tasks, where both call the function that does the work but the latter depends on the "clean" task, too. – Seth Apr 02 '15 at 12:19
  • 1
    Doesn't this also have the same problem as a normal gulp task, in that the JS will move on to the `gulp.watch` tasks defined in `watchTask()` before `buildTask()` is confirmed complete? I feel like this still is a race condition, and does not guarantee build before watch. – Sean Ryan Jun 25 '15 at 22:35
7

gulp 4

gulp.parallel('taskName1', 'taskName2')()
gulp.series('taskName1', 'taskName2')()

I Like gulp4 !

vomvoru
  • 71
  • 1
  • 2
5

As @dman mentions that, gulp.start will be discarded in the next version. Also it can be seen in this issue of gulp.

And in the comments of the answer of @Pavel Evstigneev, @joemaller mentions that we can use run-sequence in this scenario.

But please note that, the author of run-sequence says :

This is intended to be a temporary solution until the release of gulp 4.0 which has support for defining task dependencies in series or in parallel.

Be aware that this solution is a hack, and may stop working with a future update to gulp.

So, before gulp 4.0, we can use run-sequence, after 4.0, we can just use gulp.

Community
  • 1
  • 1
Qianyue
  • 1,767
  • 19
  • 24
3

If you need to maintain the order of running tasks you can define dependencies as described here - you just need to return stream from the dependency:

gulp.task('dependency', function () {
  return gulp.src('glob')
    .pipe(plumber())
    .pipe(otherPlugin())
    .pipe(gulp.dest('destination'));
});

Define the task that depends on it:

gulp.task('depends', [ 'dependency' ], function () {
  // do work
});

And use it from watch:

gulp.task('watch', function () {
  watch('glob', [ 'depends' ]);
});

Now the dependecy task will complete before depends runs (for example your 'jasmine' and 'embed' tasks would be dependencies and you'd have another task 'server' that would depend on them). No need for any hacks.

klh
  • 605
  • 7
  • 23
  • I'm not sure if it's not off-topic, because it only answers questions from comments that should be separate questions – klh Aug 28 '15 at 09:57
2

In Gulp 4 the only thing that seems to be working for me is:

gulp.task('watch', function() {
    gulp.watch(['my-files/**/*'], gulp.series('my-func'));
});

gulp.task('my-func', function() {
    return gulp.src('[...]').pipe(gulp.dest('...'));
});
Jules Colle
  • 11,227
  • 8
  • 60
  • 67
1

To run a task before starting to watch, instead of using gulp.run() or gulp.start() just run the gulp command straight up.

So instead of:

var compress = function () {
    return gulp.src('js/vendor/*.js')
        .pipe(concat('vendor.js'))
        .pipe(gulp.dest('./build/js/'));
};

Just do:

gulp.src('js/vendor/*.js')
        .pipe(concat('vendor.js'))
        .pipe(gulp.dest('./build/js/'));

Or you can wrap that latter code in a "normal" function and call it whenever you want.

-- Inspired by this answer from a similar thread.

Community
  • 1
  • 1
bergie3000
  • 1,091
  • 1
  • 13
  • 21
0

I still dont see how this actually solves the question at hand.

If i have 4 tasks with dependencies defined between them

A,B,C,D

where A depends on B, etc as defined by gulp.task('A',['B'],function A(){}); and then i defined a new task using gulp.watch running just the functions would duplicate the dependencies.

e.g given these tasks (each tasks function exposed via name):

function A(){}
gulp.task('A',['B'],A);

function A(){}
gulp.task('A',['B'],A);

function B(){}
gulp.task('B',['C'],B);

function C(){}
gulp.task('C',['D'],C);

function D(){}
gulp.task('D',[],D);

i can write 1)

gulp.task('WATCHER', ['A'], function(){
   ...
}

which would execute A->D but if e.g Step B fails it would never enter the task (think of compile or test error)

or i can write 2)

gulp.task('WATCHER', [], function(){
   gulp.watch(...,['A'])
}

which would not run A->D until something was changed first.

or i can write 3)

gulp.task('WATCHER', [], function(){
   D();
   C();
   B();
   A();
   gulp.watch(...,['A'])
}

which would cause duplication (and errors over time) of the dependency hierarchy.

PS: In case someone is wondering why i would want my watch task to execute if any of the dependent tasks fail that is usually because i use watch for live development. eg. i start my watch task to begin working on tests etc. and it can be that the initial code i start out with already has issues thus errors.

So i would hope that gulp run or some equivalent stays for some time

mgoetzke
  • 804
  • 7
  • 14