Add a package to missing list if npm list reported it as invalid
This commit is contained in:
parent
04a6dc6d12
commit
748e8a7740
1 changed files with 2 additions and 0 deletions
|
@ -142,6 +142,8 @@ class Npm(object):
|
|||
for dep in data['dependencies']:
|
||||
if 'missing' in data['dependencies'][dep] and data['dependencies'][dep]['missing']:
|
||||
missing.append(dep)
|
||||
elif 'invalid' in data['dependencies'][dep] and data['dependencies'][dep]['invalid']:
|
||||
missing.append(dep)
|
||||
else:
|
||||
installed.append(dep)
|
||||
#Named dependency not installed
|
||||
|
|
Loading…
Reference in a new issue