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:
authorisaacs <i@izs.me>2012-09-10 20:04:49 +0400
committerisaacs <i@izs.me>2012-09-10 20:04:49 +0400
commitcc1cb054d51d1895eb48947d9919835e8914a5ab (patch)
tree316bbbd523b1858690df0b044ba9a759a126902c /node_modules/fstream-npm
parent19090bda4b6ec07404d2b9ede8385790bff46652 (diff)
fstream-npm@0.1.2
Diffstat (limited to 'node_modules/fstream-npm')
-rw-r--r--node_modules/fstream-npm/fstream-npm.js1
-rw-r--r--node_modules/fstream-npm/package.json4
2 files changed, 3 insertions, 2 deletions
diff --git a/node_modules/fstream-npm/fstream-npm.js b/node_modules/fstream-npm/fstream-npm.js
index 5678347b0..a1929a43b 100644
--- a/node_modules/fstream-npm/fstream-npm.js
+++ b/node_modules/fstream-npm/fstream-npm.js
@@ -136,6 +136,7 @@ Packer.prototype.applyIgnores = function (entry, partial, entryObj) {
// if this entry has already been bundled, and is a symlink,
// and it is the *same* symlink as this one, then exclude it.
if (pp && pp.bundleLinks && this.bundleLinks &&
+ pp.bundleLinks[entry] &&
pp.bundleLinks[entry] === this.bundleLinks[entry]) {
return false
}
diff --git a/node_modules/fstream-npm/package.json b/node_modules/fstream-npm/package.json
index edb192248..993175c0d 100644
--- a/node_modules/fstream-npm/package.json
+++ b/node_modules/fstream-npm/package.json
@@ -6,7 +6,7 @@
},
"name": "fstream-npm",
"description": "fstream class for creating npm packages",
- "version": "0.1.1",
+ "version": "0.1.2",
"repository": {
"type": "git",
"url": "git://github.com/isaacs/fstream-npm.git"
@@ -18,6 +18,6 @@
},
"license": "BSD",
"readme": "# fstream-npm\n\nThis is an fstream DirReader class that will read a directory and filter\nthings according to the semantics of what goes in an npm package.\n\nFor example:\n\n```javascript\n// This will print out all the files that would be included\n// by 'npm publish' or 'npm install' of this directory.\n\nvar FN = require(\"fstream-npm\")\nFN({ path: \"./\" })\n .on(\"child\", function (e) {\n console.error(e.path.substr(e.root.path.length + 1))\n })\n```\n\n",
- "_id": "fstream-npm@0.1.1",
+ "_id": "fstream-npm@0.1.2",
"_from": "fstream-npm@0.1"
}