包详细信息

gulp-touch

fleet3.u19.2kISC1.0.1

Sets file modification times for files copied by gulp

gulp

自述文件

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