rotating-file-stream
Advanced tools
Comparing version 1.3.9 to 1.3.10
@@ -0,1 +1,4 @@ | ||
* 2019-01-04 - v1.3.10 | ||
* Fixed a [bug occurring when two calls to _makePath_ are concurrently done](https://github.com/iccicci/rotating-file-stream/pull/33) (thanks to [cchare](https://github.com/cchare)) | ||
* devDependencies update | ||
* 2018-09-26 - v1.3.9 | ||
@@ -2,0 +5,0 @@ * Fixed TypeScript Definition file (thanks to [rakshith-ravi](https://www.npmjs.com/~rakshith-ravi) and [kbirger](https://www.npmjs.com/~kbirger)) |
{ | ||
"name": "rotating-file-stream", | ||
"version": "1.3.9", | ||
"version": "1.3.10", | ||
"description": "Opens a stream.Writable to a file rotated by interval and/or size. A logrotate alternative.", | ||
@@ -25,3 +25,3 @@ "scripts": { | ||
"contributors": [ | ||
"cicci", | ||
"cicci (https://www.trinityteam.it/DanieleRicci#en)", | ||
"allevo", | ||
@@ -31,3 +31,4 @@ "rakshith-ravi", | ||
"Jorge Silva <jorgemsrs@gmail.com>", | ||
"Jan Christoph Bernack <jc.bernack@gmail.com>" | ||
"Jan Christoph Bernack <jc.bernack@gmail.com>", | ||
"cchare (https://github.com/cchare)" | ||
], | ||
@@ -38,9 +39,9 @@ "license": "MIT", | ||
"devDependencies": { | ||
"eslint": "5.6.0", | ||
"eslint": "5.11.1", | ||
"istanbul": "0.4.5", | ||
"mocha": "5.2.0", | ||
"mocha-istanbul": "0.3.0", | ||
"typescript": "3.0.3", | ||
"@types/node": "10.11.0" | ||
"typescript": "3.2.2", | ||
"@types/node": "10.12.18" | ||
} | ||
} |
@@ -6,3 +6,3 @@ # rotating-file-stream | ||
[![Test Coverage](https://codeclimate.com/github/iccicci/rotating-file-stream/badges/coverage.svg)](https://codeclimate.com/github/iccicci/rotating-file-stream/coverage) | ||
[![Donate](http://img.shields.io/donate/bitcoin.png?color=blue)](https://blockchain.info/address/12p1p5q7sK75tPyuesZmssiMYr4TKzpSCN) | ||
[![Donate](https://img.shields.io/badge/donate-bitcoin-blue.svg)](https://blockchain.info/address/12p1p5q7sK75tPyuesZmssiMYr4TKzpSCN) | ||
@@ -9,0 +9,0 @@ [![NPM version](https://badge.fury.io/js/rotating-file-stream.svg)](https://www.npmjs.com/package/rotating-file-stream) |
@@ -225,3 +225,4 @@ "use strict"; | ||
return callback(e); | ||
if(e.code !== "EEXIST") | ||
return callback(e); | ||
} | ||
@@ -228,0 +229,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
43010
799