You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

gulp-preservetime

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-preservetime

Preserves file modification times for files copied by gulp

1.2.1
latest
Source
npmnpm
Version published
Weekly downloads
646
-1.37%
Maintainers
1
Weekly downloads
 
Created
Source

gulp-preservetime

Preserves the file modification and accessed time of a file copied using gulp

Install

Install with npm

npm install --save-dev gulp-preservetime

Example

var gulp = require('gulp');
var preservetime = require('gulp-preservetime');

gulp.task('default', function() {
	gulp.src('./src/**/*')
		.pipe(gulp.dest('./dest'))
		.pipe(preservetime());
});

Changelog

1.2.1

  • Fix Pipe Interruption (thanks gzzz)

1.1.0

  • Support microsecond precision on file times using futimes instead of utimes (thanks ibobo)

Keywords

gulp

FAQs

Package last updated on 19 Oct 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts