1.0.1 • Published 8 years ago

gulp-touch v1.0.1

Weekly downloads
234
License
ISC
Repository
-
Last release
8 years ago

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());
});