Skip to content

Commit 65cc653

Browse files
committedJun 26, 2015
pack: fix infinite loop when packing w/ node_modules w/ dep cycles
1 parent 532dfc1 commit 65cc653

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎lib/utils/tar.js

+3
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,11 @@ BundledPacker.prototype.isBundled = function (name) {
147147
var pkg = this.tree.children.filter(nameMatch(name))[0]
148148
if (!pkg) return false
149149
var requiredBy = union([], pkg.package._requiredBy)
150+
var seen = {}
150151
while (requiredBy.length) {
151152
var req = requiredBy.shift()
153+
if (seen[req]) continue
154+
seen[req] = true
152155
var reqPkg = this.flatTree[req]
153156
if (!reqPkg) continue
154157
if (reqPkg.parent === this.tree && bd.indexOf(reqPkg.package.name) !== -1) {

0 commit comments

Comments
 (0)
Please sign in to comment.