diff options
Diffstat (limited to 'node_modules/istanbul-lib-report')
| -rw-r--r-- | node_modules/istanbul-lib-report/CHANGELOG.md | 13 | ||||
| -rw-r--r-- | node_modules/istanbul-lib-report/lib/file-writer.js | 1 | ||||
| -rw-r--r-- | node_modules/istanbul-lib-report/package.json | 2 |
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", |
