Don't log npm install warnings

Closes #5194
Esse commit está contido em:
Kevin Sawicki
2015-01-21 17:10:20 -08:00
commit f7ecc3e2a3
+3 -3
Ver Arquivo
@@ -48,9 +48,9 @@ function bootstrap() {
var dedupeNpmCommand = npmPath + npmFlags + 'dedupe'; var dedupeNpmCommand = npmPath + npmFlags + 'dedupe';
if (process.argv.indexOf('--no-quiet') === -1) { if (process.argv.indexOf('--no-quiet') === -1) {
buildInstallCommand += ' --quiet'; buildInstallCommand += ' --loglevel error';
apmInstallCommand += ' --quiet'; apmInstallCommand += ' --loglevel error';
moduleInstallCommand += ' --quiet'; moduleInstallCommand += ' --loglevel error';
dedupeApmCommand += ' --quiet'; dedupeApmCommand += ' --quiet';
dedupeNpmCommand += ' --quiet'; dedupeNpmCommand += ' --quiet';
buildInstallOptions.ignoreStdout = true; buildInstallOptions.ignoreStdout = true;