I'm using gulp-rename to rename a directory as follows:
gulp.task('vendor-rename-pre', function() {
return gulp.src('src/vendor')
.pipe(rename('vendor-dev'))
.pipe(gulp.dest('src'));
});
However, it essentially ends up creating a new, empty directory called vendor-dev instead of renaming vendor. vendor is left as is.
So, how can I actually rename a directory using gulp?
There's nothing Gulp-specific about renaming a file on disk. You can just use the standard Node.js fs.rename() function:
var fs = require('fs');
gulp.task('vendor-rename-pre', function(done) {
fs.rename('src/vendor', 'src/vendor-dev', function (err) {
if (err) {
throw err;
}
done();
});
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With