Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorForrest L Norvell <forrest@npmjs.com>2014-11-19 22:01:39 +0300
committerForrest L Norvell <forrest@npmjs.com>2014-11-19 22:04:28 +0300
commitd9c7857be02dacd274e55bf6d430d90d91509d53 (patch)
tree0ef867f6abf8f72619399c222e59701b68e30d6b /node_modules/read-installed
parent3f8e2ff8342d327d6f1375437ecf4bd945dc360f (diff)
readdir-scoped-modules@1.0.1
Ensures the hegemony of `graceful-fs` over all fs operations, thus helping to address #6506. Probably not the whole solution to the problem.
Diffstat (limited to 'node_modules/read-installed')
-rw-r--r--node_modules/read-installed/node_modules/readdir-scoped-modules/package.json29
-rw-r--r--node_modules/read-installed/node_modules/readdir-scoped-modules/readdir.js2
2 files changed, 9 insertions, 22 deletions
diff --git a/node_modules/read-installed/node_modules/readdir-scoped-modules/package.json b/node_modules/read-installed/node_modules/readdir-scoped-modules/package.json
index 84b91e75a..c33c391c2 100644
--- a/node_modules/read-installed/node_modules/readdir-scoped-modules/package.json
+++ b/node_modules/read-installed/node_modules/readdir-scoped-modules/package.json
@@ -1,6 +1,6 @@
{
"name": "readdir-scoped-modules",
- "version": "1.0.0",
+ "version": "1.0.1",
"description": "Like `fs.readdir` but handling `@org/module` dirs as if they were a single entry.",
"main": "readdir.js",
"directories": {
@@ -9,6 +9,7 @@
"dependencies": {
"debuglog": "^1.0.1",
"dezalgo": "^1.0.0",
+ "graceful-fs": "^3.0.4",
"once": "^1.3.0"
},
"devDependencies": {
@@ -31,24 +32,10 @@
"url": "https://github.com/npm/readdir-scoped-modules/issues"
},
"homepage": "https://github.com/npm/readdir-scoped-modules",
- "gitHead": "35a4a7a2325d12ed25ed322cd61f976b740f7fb7",
- "_id": "readdir-scoped-modules@1.0.0",
- "_shasum": "e939de969b38b3e7dfaa14fbcfe7a2fd15a4ea37",
- "_from": "readdir-scoped-modules@>=1.0.0-0 <2.0.0-0",
- "_npmVersion": "2.0.0-alpha.6.0",
- "_npmUser": {
- "name": "isaacs",
- "email": "i@izs.me"
- },
- "maintainers": [
- {
- "name": "isaacs",
- "email": "i@izs.me"
- }
- ],
- "dist": {
- "shasum": "e939de969b38b3e7dfaa14fbcfe7a2fd15a4ea37",
- "tarball": "http://registry.npmjs.org/readdir-scoped-modules/-/readdir-scoped-modules-1.0.0.tgz"
- },
- "_resolved": "https://registry.npmjs.org/readdir-scoped-modules/-/readdir-scoped-modules-1.0.0.tgz"
+ "readme": "# readdir-scoped-modules\n\nLike `fs.readdir` but handling `@org/module` dirs as if they were\na single entry.\n\nUsed by npm.\n\n## USAGE\n\n```javascript\nvar readdir = require('readdir-scoped-modules')\n\nreaddir('node_modules', function (er, entries) {\n // entries will be something like\n // ['a', '@org/foo', '@org/bar']\n})\n```\n",
+ "readmeFilename": "README.md",
+ "gitHead": "451d38946c5b6b6c0db33a890f33536a11ed79f7",
+ "_id": "readdir-scoped-modules@1.0.1",
+ "_shasum": "5c2a77f3e08250a8fddf53fa58cdc17900b808b9",
+ "_from": "readdir-scoped-modules@>=1.0.0 <2.0.0"
}
diff --git a/node_modules/read-installed/node_modules/readdir-scoped-modules/readdir.js b/node_modules/read-installed/node_modules/readdir-scoped-modules/readdir.js
index 91978a739..efbe5526d 100644
--- a/node_modules/read-installed/node_modules/readdir-scoped-modules/readdir.js
+++ b/node_modules/read-installed/node_modules/readdir-scoped-modules/readdir.js
@@ -1,4 +1,4 @@
-var fs = require ('fs')
+var fs = require ('graceful-fs')
var dz = require ('dezalgo')
var once = require ('once')
var path = require ('path')