Change file access and modification times
npm install gulp-touch-cmdChange file access and modification times of files copied using gulp
Install with npm
```
npm install --save-dev gulp-touch-cmd
`js
var gulp = require('gulp');
var touch = require('gulp-touch-cmd');
gulp.task('default', function() {
gulp
.src('./src/*/')
.pipe(gulp.dest('./dest'))
.pipe(touch());
});
``