npm.io
1.0.2 • Published 11 years ago

gulp-namespace

Licence
MIT
Version
1.0.2
Deps
0
Vulns
0
Weekly
0
Stars
1

gulp-namespace

This is handy helper lets you automagically namespace all tasks and task references within the supplied callback. This is useful for things like inheriting the tasks from a dependency gulpfile, without clobbering your own.

var namespace = require('gulp-namespace')
var gulp = require('gulp')
namespace(gulp)

gulp.namespace('some-dependency', function () {
  require('some-dependency/gulpfile')
})