gulp-git-mtime
v0.0.2
Published
Sync the mtime by git for gulp
Downloads
2
Readme
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('./'));
});