Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/frankwallis/gulp-hub

Gulp plugin to run tasks in multiple gulpfiles
https://github.com/frankwallis/gulp-hub

Last synced: about 2 hours ago
JSON representation

Gulp plugin to run tasks in multiple gulpfiles

Awesome Lists containing this project

README

        

# gulp-hub

> [Gulp](http://gulpjs.com/) extension to run tasks from multiple gulpfiles.

[![build status](https://secure.travis-ci.org/frankwallis/gulp-hub.png?branch=master)](http://travis-ci.org/frankwallis/gulp-hub?branch=master)

Usage:

1. Install gulp-hub:

```sh
$ npm install gulp gulp-hub
```

2. Create a gulpfile.js which looks like this:

```js
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.