Skip to content

Commit 7c5ebe0

Browse files
committedJun 26, 2015
ls: Don't error on missing optional deps
This does mark them as missing in the main output (in yellow) but does not include them in the error list nor does it result in an error code.
1 parent ae1f202 commit 7c5ebe0

File tree

2 files changed

+24
-16
lines changed

2 files changed

+24
-16
lines changed
 

‎lib/install/logical-tree.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,11 @@ function translateTree (tree) {
6868
pkg.dependencies[name].realName = name
6969
pkg.dependencies[name].extraneous = false
7070
} else {
71-
pkg.dependencies[name] = tree.missingDeps[name]
71+
pkg.dependencies[name] = {
72+
requiredBy: tree.missingDeps[name],
73+
missing: true,
74+
optional: !!pkg.optionalDependencies[name]
75+
}
7276
}
7377
})
7478
if (tree.missingPeers) {

‎lib/ls.js

+19-15
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ function filterByEnv (data) {
120120
var keys = Object.keys(devDependencies)
121121
if (production && !dev && keys.indexOf(name) !== -1) return
122122
if (dev && !production && keys.indexOf(name) === -1) return
123-
if (!dev && keys.indexOf(name) !== -1 && typeof data.dependencies[name] === 'string') return
123+
if (!dev && keys.indexOf(name) !== -1 && data.dependencies[name].missing) return
124124
dependencies[name] = data.dependencies[name]
125125
})
126126
data.dependencies = dependencies
@@ -175,19 +175,19 @@ function getLite (data, noname) {
175175
if (deps.length) {
176176
lite.dependencies = deps.map(function (d) {
177177
var dep = data.dependencies[d]
178-
if (typeof dep === 'string') {
178+
if (dep.missing && !dep.optional) {
179179
lite.problems = lite.problems || []
180180
var p
181181
if (data.depth > maxDepth) {
182182
p = 'max depth reached: '
183183
} else {
184184
p = 'missing: '
185185
}
186-
p += d + '@' + dep +
186+
p += d + '@' + dep.requiredBy +
187187
', required by ' +
188188
data.name + '@' + data.version
189189
lite.problems.push(p)
190-
return [d, { required: dep, missing: true }]
190+
return [d, { required: dep.requiredBy, missing: true }]
191191
} else if (dep.peerMissing) {
192192
lite.problems = lite.problems || []
193193
var p = 'peer dep missing: ' +
@@ -228,7 +228,7 @@ function bfsify (root) {
228228
var deps = current.dependencies = current.dependencies || {}
229229
Object.keys(deps).forEach(function (d) {
230230
var dep = deps[d]
231-
if (typeof dep !== 'object') return
231+
if (dep.missing) return
232232
if (seen.indexOf(dep) !== -1) {
233233
if (npm.config.get('parseable') || !npm.config.get('long')) {
234234
delete deps[d]
@@ -279,16 +279,20 @@ function makeArchy (data, long, dir) {
279279
}
280280

281281
function makeArchy_ (data, long, dir, depth, parent, d) {
282-
if (typeof data === 'string') {
282+
if (data.missing) {
283283
if (depth - 1 <= npm.config.get('depth')) {
284284
// just missing
285-
var unmet = 'UNMET DEPENDENCY'
285+
var unmet = 'UNMET ' + (data.optional ? 'OPTIONAL ' : '') + 'DEPENDENCY'
286286
if (npm.color) {
287-
unmet = color.bgBlack(color.red(unmet))
287+
if (data.optional) {
288+
unmet = color.bgBlack(color.yellow(unmet))
289+
} else {
290+
unmet = color.bgBlack(color.red(unmet))
291+
}
288292
}
289-
data = unmet + ' ' + d + '@' + data
293+
data = unmet + ' ' + d + '@' + data.requiredBy
290294
} else {
291-
data = d + '@' + data
295+
data = d + '@' + data.requiredBy
292296
}
293297
return data
294298
}
@@ -399,16 +403,16 @@ function makeParseable (data, long, dir, depth, parent, d) {
399403
function makeParseable_ (data, long, dir, depth, parent, d) {
400404
if (data.hasOwnProperty('_found') && data._found !== true) return ''
401405

402-
if (typeof data === 'string') {
403-
if (data.depth < npm.config.get('depth')) {
406+
if (data.missing) {
407+
if (depth < npm.config.get('depth')) {
404408
data = npm.config.get('long')
405409
? path.resolve(parent.path, 'node_modules', d) +
406-
':' + d + '@' + JSON.stringify(data) + ':INVALID:MISSING'
410+
':' + d + '@' + JSON.stringify(data.requiredBy) + ':INVALID:MISSING'
407411
: ''
408412
} else {
409-
data = path.resolve(data.path || '', 'node_modules', d || '') +
413+
data = path.resolve(dir || '', 'node_modules', d || '') +
410414
(npm.config.get('long')
411-
? ':' + d + '@' + JSON.stringify(data) +
415+
? ':' + d + '@' + JSON.stringify(data.requiredBy) +
412416
':' + // no realpath resolved
413417
':MAXDEPTH'
414418
: '')

0 commit comments

Comments
 (0)
Please sign in to comment.