Adding ability to disable npm install silent flag

This commit is contained in:
Derek Schaller 2015-12-12 22:58:26 -08:00 committed by Justin Findlay
parent c1101b5f0b
commit afe149eb6d

View file

@ -132,7 +132,7 @@ def install(pkg=None,
pkgs = pkg_list
if registry:
registry = _cmd_quote(registry)
cmd = ['npm', 'install']
if silent:
cmd.append(['--silent'])