Merge pull request #503 from minrk/disable-npm-progress

disable npm progress when installing
This commit is contained in:
Matthias Bussonnier
2016-04-08 17:36:02 -07:00

View File

@@ -166,7 +166,7 @@ class Bower(BaseCommand):
if self.should_run_npm():
print("installing build dependencies with npm")
check_call(['npm', 'install'], cwd=here)
check_call(['npm', 'install', '--progress=false'], cwd=here)
os.utime(self.node_modules)
env = os.environ.copy()