Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

st-gulp-mtime

styd-fe4MIT0.9.1

A gulp plugin to update mtime.

gulp, gulpplugin, gulp-plugin, gulp update mtime

readme

st-gulp-mtime

A gulp plugin to update mtime.

Information

Packagest-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'));
});