gulp-hub icon indicating copy to clipboard operation
gulp-hub copied to clipboard

Gulp plugin to run tasks in multiple gulpfiles

gulp-hub

Gulp extension to run tasks from multiple gulpfiles.

build status

Usage:

  1. Install gulp-hub:

    $ npm install gulp gulp-hub
    
  2. Create a gulpfile.js which looks like this:

    var hub = require('gulp-hub');
    hub(['./project1/gulpfile.js', './project1/gulpfile.js']);
    
  3. Run gulp [taskname]

Gulp-hub will execute that task in all of the gulpfiles.