improve install handling of needed global tools

This commit is contained in:
2016-11-25 13:43:35 +01:00
parent 07deb7497a
commit 733a35b789
3 changed files with 4 additions and 4 deletions

View File

@ -29,7 +29,7 @@ export let install = (versionArg) => {
.then(config => {
for (let npmTool of config.globalNpmTools) {
plugins.beautylog.info(`globally installing ${npmTool} from npm`)
bash(`npm install --loglevel=silent -g ${npmTool}`)
bash(`npm install -q -g ${npmTool}`)
}
done.resolve()
})