Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/frankwallis/gulp-hub
- Owner: frankwallis
- License: mit
- Created: 2014-06-09T19:19:31.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2018-02-10T15:59:00.000Z (almost 7 years ago)
- Last Synced: 2024-10-28T11:46:17.524Z (16 days ago)
- Language: JavaScript
- Size: 156 KB
- Stars: 89
- Watchers: 8
- Forks: 24
- 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.
[![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.