Commit c3e2f5c6 by Christophe Biocca

Ensure named packages not in top level are marked as missing.

parent e90d2573
......@@ -163,6 +163,8 @@ class Npm(object):
missing.append(dep)
else:
installed.append(dep)
if self.name and self.name not in installed:
missing.append(self.name)
#Named dependency not installed
else:
missing.append(self.name)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment