rotating-file-stream
Advanced tools
Comparing version 1.3.4 to 1.3.5
@@ -0,1 +1,4 @@ | ||
* 2018-03-15 - v1.3.5 | ||
* Using slightly faster timestamp generator function (thanks to [jorgemsrs](https://github.com/jorgemsrs)) | ||
* devDependencies update | ||
* 2017-11-13 - v1.3.4 | ||
@@ -2,0 +5,0 @@ * __immutable__ option review |
@@ -234,3 +234,3 @@ "use strict"; | ||
}.bind(this)); | ||
} | ||
}; | ||
@@ -279,3 +279,3 @@ RotatingFileStream.prototype.move = function(retry) { | ||
RotatingFileStream.prototype.now = function() { | ||
return new Date().getTime(); | ||
return Date.now(); | ||
}; | ||
@@ -282,0 +282,0 @@ |
{ | ||
"name": "rotating-file-stream", | ||
"version": "1.3.4", | ||
"version": "1.3.5", | ||
"description": "Opens a stream.Writable to a file rotated by interval and/or size. A logrotate alternative.", | ||
@@ -25,3 +25,4 @@ "scripts": { | ||
"cicci", | ||
"allevo" | ||
"allevo", | ||
"Jorge Silva <jorgemsrs@gmail.com>" | ||
], | ||
@@ -31,7 +32,7 @@ "license": "MIT", | ||
"devDependencies": { | ||
"eslint": "4.10.0", | ||
"eslint": "4.18.2", | ||
"istanbul": "0.4.5", | ||
"mocha": "4.0.1", | ||
"mocha": "5.0.4", | ||
"mocha-istanbul": "0.3.0" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
40592