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

21 lines
427 B
Markdown

# gulp-symdest
Like gulp.dest, but handles symlinks.
## Details
It assumes that if a [vinyl](https://github.com/wearefractal/vinyl) file
has a field `symlink`, then it is a `string` with the value for the
symlink itself.
## Usage
```javascript
var gulp = require('gulp');
var symdest = require('gulp-symdest');
gulp.task('default', function () {
return gulp.src('path_with_symlinks/**')
.pipe(symdest('out'));
});
```