diff options
Diffstat (limited to 'node_modules/which')
-rw-r--r-- | node_modules/which/CHANGELOG.md | 4 | ||||
-rw-r--r-- | node_modules/which/package.json | 2 | ||||
-rw-r--r-- | node_modules/which/which.js | 1 |
3 files changed, 5 insertions, 2 deletions
diff --git a/node_modules/which/CHANGELOG.md b/node_modules/which/CHANGELOG.md index f2c6e4fd3..698e8edb0 100644 --- a/node_modules/which/CHANGELOG.md +++ b/node_modules/which/CHANGELOG.md @@ -1,6 +1,10 @@ # Changes +## v1.2.12 + +* Removed unused require + ## v1.2.11 * Prevent changelog script from being included in package diff --git a/node_modules/which/package.json b/node_modules/which/package.json index fb27c56d9..9c7de7d9d 100644 --- a/node_modules/which/package.json +++ b/node_modules/which/package.json @@ -2,7 +2,7 @@ "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)", "name": "which", "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.", - "version": "1.2.11", + "version": "1.2.12", "repository": { "type": "git", "url": "git://github.com/isaacs/node-which.git" diff --git a/node_modules/which/which.js b/node_modules/which/which.js index 5a9b15ca6..70d974c18 100644 --- a/node_modules/which/which.js +++ b/node_modules/which/which.js @@ -8,7 +8,6 @@ var isWindows = process.platform === 'win32' || var path = require('path') var COLON = isWindows ? ';' : ':' var isexe = require('isexe') -var fs = require('fs') function getNotFoundError (cmd) { var er = new Error('not found: ' + cmd) |