You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for finding and reporting. This was actually reported and fixed by gulpjs/vinyl-fs#125 which we should be releasing soon but we have a bigger bug that needs to be fixed in the same release.
Issue: Gulp.Dest truncates file modified time (down to the second)
version: 4.0.0-alpha.2
[21:19:57] 1450153068177 - src stat.mtime.getTime()
[21:19:57] 1450153068000 - dest stat.mtime.getTime()
var newer = require('gulp-newer');
var debug = require('gulp-debug');
var gutil = require('gulp-util');
gulp.task('test', () => {
gutil.log('testing');
return gulp.src('app/assets/img/**')
.pipe(newer('tmp'))
.pipe(debug())
.pipe(gulp.dest('tmp'));
});
The text was updated successfully, but these errors were encountered: