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

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'));
});