babel-plugin-istanbul
Advanced tools
Comparing version 5.1.0 to 5.1.1
@@ -5,2 +5,12 @@ # Change Log | ||
<a name="5.1.1"></a> | ||
## [5.1.1](https://github.com/istanbuljs/babel-plugin-istanbul/compare/v5.1.0...v5.1.1) (2019-01-11) | ||
### Bug Fixes | ||
* respect changes of cwd in options ([#171](https://github.com/istanbuljs/babel-plugin-istanbul/issues/171)) ([adec723](https://github.com/istanbuljs/babel-plugin-istanbul/commit/adec723)) | ||
<a name="5.1.0"></a> | ||
@@ -7,0 +17,0 @@ # [5.1.0](https://github.com/istanbuljs/babel-plugin-istanbul/compare/v5.0.1...v5.1.0) (2018-09-07) |
@@ -29,3 +29,3 @@ "use strict"; | ||
return function shouldSkip(file, opts) { | ||
if (!exclude) { | ||
if (!exclude || exclude.cwd !== opts.cwd) { | ||
var cwd = getRealpath(process.env.NYC_CWD || process.cwd()); | ||
@@ -32,0 +32,0 @@ var nycConfig = process.env.NYC_CONFIG ? JSON.parse(process.env.NYC_CONFIG) : {}; |
{ | ||
"name": "babel-plugin-istanbul", | ||
"version": "5.1.0", | ||
"version": "5.1.1", | ||
"author": "Thai Pangsakulyanont @dtinth", | ||
@@ -17,13 +17,13 @@ "license": "BSD-3-Clause", | ||
"devDependencies": { | ||
"@babel/cli": "^7.0.0", | ||
"@babel/core": "^7.0.0", | ||
"@babel/preset-env": "^7.0.0", | ||
"@babel/cli": "^7.2.3", | ||
"@babel/core": "^7.2.2", | ||
"@babel/preset-env": "^7.2.3", | ||
"@babel/register": "^7.0.0", | ||
"chai": "^4.1.2", | ||
"coveralls": "^3.0.1", | ||
"cross-env": "^5.1.6", | ||
"chai": "^4.2.0", | ||
"coveralls": "^3.0.2", | ||
"cross-env": "^5.2.0", | ||
"mocha": "^5.2.0", | ||
"nyc": "^13.1.0", | ||
"pmock": "^0.2.3", | ||
"standard": "^11.0.1", | ||
"standard": "^12.0.1", | ||
"standard-version": "^4.4.0" | ||
@@ -30,0 +30,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
20384