st-gulp-mtime
A gulp plugin to update mtime.
Information
Package | st-gulp-mtime |
Description | A gulp plugin to update mtime |
Installation
npm install st-gulp-mtime
Basic Usage
var updateMtime = require('st-gulp-mtime');
gulp.task('updateMtime', function () {
return gulp.src('./src/index.html')
.pipe(updateMtime())
.pipe(gulp.dest('./public'));
});