pentest-distro-builder/filesystem/root/.vscode/extensions/ms-vscode.powershell-1.8.4/node_modules/gulp-symdest
2018-10-17 15:35:13 -06:00
..
test Parrot preseed changes 2018-10-17 15:35:13 -06:00
index.js Parrot preseed changes 2018-10-17 15:35:13 -06:00
package.json Parrot preseed changes 2018-10-17 15:35:13 -06:00
README.md Parrot preseed changes 2018-10-17 15:35:13 -06: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'));
});