0.0.5 • Published 9 years ago

gulp-gulp v0.0.5

Weekly downloads
4
License
MIT
Repository
github
Last release
9 years ago

gulp-gulp NPM version

A gulp plugin to run other gulps.

Usage

Initially, install gulp-gulp as a development dependency:

npm install --save-dev gulp-gulp

Then, create task using gulp-gulp, which might look similar as below:

'use strict';

var gulp = require('gulp');
var gulpGulp = require('gulp-gulp');

gulp.task('gulp', function() {
  return gulp.src('./**/*/gulpfile.js')
    .pipe(gulpGulp());
});

Finally, fire gulp task:

gulp gulp

If you have following (clean, move, run) sub-gulp tasks you can run like this

gulp gulp --clean move run

License

MIT License

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

10 years ago

0.0.1

10 years ago