gulp-touch
v1.0.1
Published
Sets file modification times for files copied by gulp
Downloads
10,902
Readme
gulp-touch
Set the file modification and accessed time of a file copied using gulp to "now"
Install
Install with npm
npm install --save-dev gulp-touch
Example
var gulp = require('gulp');
var touch = require('gulp-touch');
gulp.task('default', function() {
gulp.src('./src/**/*')
.pipe(gulp.dest('./dest'))
.pipe(touch());
});