dotfiles/.vscode/extensions/saviorisdead.RustyCode-0.18.0/node_modules/gulp-symdest/README.md
Cyryl Płotnicki 2f946d6200 Add .vscode
2016-09-11 10:29:13 +02:00

427 B

gulp-symdest

Like gulp.dest, but handles symlinks.

Details

It assumes that if a vinyl file has a field symlink, then it is a string with the value for the symlink itself.

Usage

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

gulp.task('default', function () {
	return gulp.src('path_with_symlinks/**')
		.pipe(symdest('out'));
});