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

coffee

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

coffee - npm Package Compare versions

Comparing version 3.0.1 to 3.0.2

5

HISTORY.md
3.0.2 / 2016-01-09
==================
* fix: process.env._ may not exist in webstorm
3.0.1 / 2016-01-07

@@ -3,0 +8,0 @@ ==================

8

lib/find_istanbul.js

@@ -15,3 +15,2 @@ 'use strict';

var filepath;
var entryBin = require.resolve(process.env._);
var dirs = [];

@@ -22,4 +21,7 @@

// depended by some tools
dirs.push(path.join(entryBin, '..'));
dirs.push(path.join(entryBin, '../..'));
if (process.env._) {
var entryBin = require.resolve(process.env._);
dirs.push(path.join(entryBin, '..'));
dirs.push(path.join(entryBin, '../..'));
}
// specified $PWD

@@ -26,0 +28,0 @@ opt && opt.cwd && dirs.push(opt.cwd);

{
"name": "coffee",
"version": "3.0.1",
"version": "3.0.2",
"description": "Test command line on nodejs",

@@ -5,0 +5,0 @@ "main": "index.js",

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