grunt-istanbul
Advanced tools
Comparing version 0.6.0 to 0.6.1
{ | ||
"name": "grunt-istanbul", | ||
"description": "JavaScript codecoverage tool for Grunt", | ||
"version": "0.6.0", | ||
"version": "0.6.1", | ||
"homepage": "https://github.com/taichi/grunt-istanbul", | ||
@@ -6,0 +6,0 @@ "author": { |
@@ -91,5 +91,5 @@ exports.init = function(grunt) { | ||
function readStat(f) { | ||
if (grunt.file.exists(f.name) && grunt.file.exists(outFile(f.name))) { | ||
if (grunt.file.exists(getRelativePath(f.name)) && grunt.file.exists(outFile(f.name))) { | ||
grunt.log.debug('reading stat for ' + f.name); | ||
fs.stat(f.name, this.async({ name : f.name, stat : as(1) })); | ||
fs.stat(getRelativePath(f.name), this.async({ name : f.name, stat : as(1) })); | ||
fs.stat(outFile(f.name), this.async({ name : f.name, stat : as(1) })); | ||
@@ -96,0 +96,0 @@ } else { |
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
16206