Package Exports
- gulp-symdest
- gulp-symdest/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-symdest) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
⚠️ DEPRECATED since vinly-fs
already supports symlinks.
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'));
});