Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

grunt-istanbul

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-istanbul - npm Package Compare versions

Comparing version 0.6.0 to 0.6.1

2

package.json
{
"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 {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc