0.0.2 • Published 6 years ago

gulp-git-mtime v0.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

gulp-git-mtime

===========

Sync the mtime by git for gulp

Usage

First, install gulp-git-mtime as a development dependency:

npm install --save-dev gulp-git-mtime

Then, add it to your gulpfile.js:

Simple

var mtimer = require('gulp-git-mtime');

gulp.task('mtimer', function(){
  return gulp.src('./public/**/*.md')
    .pipe(mtimer())
    .pipe(gulp.dest('./'));
});