wct-istanbub
Advanced tools
Comparing version 0.1.1 to 0.1.2
@@ -7,4 +7,8 @@ # Changelog | ||
## [0.1.2] - 2018-05-01 | ||
### Fixed | ||
- Use cwd if no root/manifestName is set | ||
## [0.1.1] - 2018-04-04 | ||
### Fixed | ||
- Check if file exists before trying to load |
@@ -94,3 +94,3 @@ var _ = require('lodash'); | ||
} | ||
const basename = path.basename(options.root); | ||
const basename = path.basename(options.root || process.cwd()); | ||
console.warn( | ||
@@ -97,0 +97,0 @@ `no ${manifestName} found, defaulting to packageName=${basename}`); |
{ | ||
"name": "wct-istanbub", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "Instanbul coverage reporting for projects being tested by web-component-tester", | ||
@@ -5,0 +5,0 @@ "main": "lib/plugin.js", |
@@ -35,3 +35,3 @@ WCT-istanbub | ||
exclude: [ | ||
"**/test/**", | ||
"**/test/**" | ||
] | ||
@@ -95,3 +95,3 @@ } | ||
exclude: [ | ||
"**/test/** | ||
"**/test/**" | ||
], | ||
@@ -98,0 +98,0 @@ thresholds: { |
11317