Skip to content

Commit 20675ee

Browse files
author
Ilya Radchenko
committed
Make npm command verbose
1 parent 9718fa0 commit 20675ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/npm-command.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ var npm = process.platform === 'win32' ? 'npm.cmd' : 'npm';
44

55
module.exports = function (command, globals) {
66
var hasGlobals = globals && globals.length;
7-
var args = [command, '--color=always'];
7+
var args = [command, '--color=always', '--verbose'];
88

99
if (hasGlobals) {
1010
args = args.concat(globals);

0 commit comments

Comments
 (0)