Comparing version 3.0.1 to 3.0.2
3.0.2 / 2016-01-09 | ||
================== | ||
* fix: process.env._ may not exist in webstorm | ||
3.0.1 / 2016-01-07 | ||
@@ -3,0 +8,0 @@ ================== |
@@ -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", |
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
13725
276
11