https://github.com/frankwallis/gulp-hub
Gulp plugin to run tasks in multiple gulpfiles
https://github.com/frankwallis/gulp-hub
Last synced: 3 months ago
JSON representation
Gulp plugin to run tasks in multiple gulpfiles
- Host: GitHub
- URL: https://github.com/frankwallis/gulp-hub
- Owner: frankwallis
- License: mit
- Created: 2014-06-09T19:19:31.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2018-02-10T15:59:00.000Z (over 7 years ago)
- Last Synced: 2025-04-09T22:12:37.474Z (3 months ago)
- Language: JavaScript
- Size: 156 KB
- Stars: 89
- Watchers: 7
- Forks: 22
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gulp-hub
> [Gulp](http://gulpjs.com/) extension to run tasks from multiple gulpfiles.
[](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.