gulp-chroot
v0.0.5
Published
gulp chroot plugin
Readme
gulp-chroot 
Install
$ npm install --save-dev gulp-chrootUsage
var gulp = require('gulp');
var chroot = require('gulp-chroot');
chroot(gulp);
gulp.chroot('child', function() {
gulp.task('a', function() {
// process.cwd() == __dirname + '/child'
});
});
gulp.task('b', function() {
// process.cwd() == __dirname
})
Limit
not work with promise.
MIT © cgcgbcbc
