NPM install latest made more effecient

`npm install` is smart enough to only update updated modules. Checking for `outdated` and running `update` repeats the same process 2x.
This commit is contained in:
Joey Baker 2014-02-07 15:41:21 -08:00
parent c8a5e0a95e
commit 2768655119

View file

@ -209,12 +209,7 @@ def main():
changed = True
npm.install()
elif state == 'latest':
installed, missing = npm.list()
outdated = npm.list_outdated()
if len(missing) or len(outdated):
changed = True
npm.install()
npm.update()
npm.install()
else: #absent
installed, missing = npm.list()
if name in installed: