Sets file modification times for files copied by gulp
npm install gulp-touchSet the file modification and accessed time of a file copied using gulp to "now"
Install with npm
```
npm install --save-dev gulp-touch
`js
var gulp = require('gulp');
var touch = require('gulp-touch');
gulp.task('default', function() {
gulp.src('./src/*/')
.pipe(gulp.dest('./dest'))
.pipe(touch());
});
``