aboutsummaryrefslogtreecommitdiff
path: root/node_modules/istanbul-lib-report
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-12-10 21:51:33 +0100
committerFlorian Dold <florian.dold@gmail.com>2017-12-10 21:51:33 +0100
commit0469abd4a9c9270a1fdc962969e36e63699af8b4 (patch)
treef9864d4a4148621378958794cbbfdc2393733283 /node_modules/istanbul-lib-report
parent6947e79bbc258f7bc96af424ddb71a511f0c15a3 (diff)
downloadwallet-core-0469abd4a9c9270a1fdc962969e36e63699af8b4.tar.xz
upgrade dependencies
Diffstat (limited to 'node_modules/istanbul-lib-report')
-rw-r--r--node_modules/istanbul-lib-report/CHANGELOG.md13
-rw-r--r--node_modules/istanbul-lib-report/lib/file-writer.js1
-rw-r--r--node_modules/istanbul-lib-report/package.json2
3 files changed, 13 insertions, 3 deletions
diff --git a/node_modules/istanbul-lib-report/CHANGELOG.md b/node_modules/istanbul-lib-report/CHANGELOG.md
index 6ec96b143..d83e1bfde 100644
--- a/node_modules/istanbul-lib-report/CHANGELOG.md
+++ b/node_modules/istanbul-lib-report/CHANGELOG.md
@@ -1,7 +1,18 @@
# Change Log
All notable changes to this project will be documented in this file.
-See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
+See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+<a name="1.1.2"></a>
+## [1.1.2](https://github.com/istanbuljs/istanbuljs/compare/istanbul-lib-report@1.1.1...istanbul-lib-report@1.1.2) (2017-10-21)
+
+
+### Bug Fixes
+
+* remove call to mkdirp.sync() in constructor so when used for ConsoleWriter ([#104](https://github.com/istanbuljs/istanbuljs/issues/104)) ([58eb79d](https://github.com/istanbuljs/istanbuljs/commit/58eb79d))
+
+
+
<a name="1.1.1"></a>
## [1.1.1](https://github.com/istanbuljs/istanbuljs/compare/istanbul-lib-report@1.1.0...istanbul-lib-report@1.1.1) (2017-05-27)
diff --git a/node_modules/istanbul-lib-report/lib/file-writer.js b/node_modules/istanbul-lib-report/lib/file-writer.js
index 3121fbfb6..8db627adf 100644
--- a/node_modules/istanbul-lib-report/lib/file-writer.js
+++ b/node_modules/istanbul-lib-report/lib/file-writer.js
@@ -119,7 +119,6 @@ function FileWriter(baseDir) {
if (!baseDir) {
throw new Error('baseDir must be specified');
}
- mkdirp.sync(baseDir);
this.baseDir = baseDir;
}
diff --git a/node_modules/istanbul-lib-report/package.json b/node_modules/istanbul-lib-report/package.json
index 3e39048cc..3879d71c7 100644
--- a/node_modules/istanbul-lib-report/package.json
+++ b/node_modules/istanbul-lib-report/package.json
@@ -1,6 +1,6 @@
{
"name": "istanbul-lib-report",
- "version": "1.1.1",
+ "version": "1.1.2",
"description": "Base reporting library for istanbul",
"author": "Krishnan Anantheswaran <kananthmail-github@yahoo.com>",
"main": "index.js",